Python Forum
Please support regex for version number (digits and dots) from a string
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Please support regex for version number (digits and dots) from a string
#1
Hello Community,

I have the following string

"SYS"."M_SYSTEM_OVERVIEW" ('System', 'Version', '', '2.00.050.00.1592305219 (fa/hana2sp05)')
I need the version information
2.00.050.00.1592305219
from that string.

I tried several things via regex but all failed. One of my ideas was to use the first part until the version number as a own group.
m = re.search('("SYS"."M_SYSTEM_OVERVIEW" \(\'System\', \'Version\', \'\', \')(\S+)(.+)', line)
Version =  m.group(2)
This lead to an AttributeError: 'NoneType' object has no attribute 'group'
How should I design patterns to get this?
Also I am not sure when to escape in that string and when not.

Can someone please assist.

Regards

--Christian
Reply


Messages In This Thread
Please support regex for version number (digits and dots) from a string - by Tecuma - Aug-14-2020, 03:47 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  parse/read from file seperated by dots giovanne 5 1,124 Jun-26-2023, 12:26 PM
Last Post: DeaD_EyE
Question Extracting Version Number from a String britesc 2 1,097 May-31-2023, 10:20 AM
Last Post: britesc
  Finding First Digits in String giddyhead 4 1,373 Aug-17-2022, 08:12 PM
Last Post: giddyhead
  TypeError: float() argument must be a string or a number, not 'list' Anldra12 2 4,882 Jul-01-2022, 01:23 PM
Last Post: deanhystad
Photo How can I use 2 digits format for all the number? plumberpy 6 2,347 Aug-09-2021, 02:16 PM
Last Post: plumberpy
  Regex: a string does not starts and ends with the same character Melcu54 5 2,432 Jul-04-2021, 07:51 PM
Last Post: Melcu54
  TypeError: int() argument must be a string, a bytes-like object or a number, not 'Non Anldra12 2 5,220 May-02-2021, 03:45 PM
Last Post: Anldra12
  cursor.execute: How to insert dynamic number in a string? stoeberhai 2 3,521 Mar-18-2021, 12:55 PM
Last Post: stoeberhai
  Regular expression: cannot find 1st number in a string Pavel_47 2 2,427 Jan-15-2021, 04:39 PM
Last Post: bowlofred
  Help getting a string out of regex matt_the_hall 4 2,285 Dec-02-2020, 01:49 AM
Last Post: matt_the_hall

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020