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
#5
Hello metullburr,

thank you for your answer and taking time.

This one works.

I have slept a few nights over this. I found a solution with regex.

import re

s = '''"SYS"."M_SYSTEM_OVERVIEW" ('System', 'Version', '', '2.00.050.00.1592305219 (fa/hana2sp05)')'''
m = re.search('(Version)(\D+)(\S+)', s)
test1 = m.group(1)
test2 = m.group(2)
test3 = m.group(3)

print("string = ", s)
print("test1: ", test1)
print("test2: ", test2)
print("test3: ", test3)
This one gives me also the Version string I am looking for. I will see which solution I will use in my script.
I will mark my thread as solved.

Regards

--Christian
Reply


Messages In This Thread
RE: Please support regex for version number (digits and dots) from a string - by Tecuma - Aug-17-2020, 09:59 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  parse/read from file seperated by dots giovanne 5 1,114 Jun-26-2023, 12:26 PM
Last Post: DeaD_EyE
Question Extracting Version Number from a String britesc 2 1,095 May-31-2023, 10:20 AM
Last Post: britesc
  Finding First Digits in String giddyhead 4 1,370 Aug-17-2022, 08:12 PM
Last Post: giddyhead
  TypeError: float() argument must be a string or a number, not 'list' Anldra12 2 4,878 Jul-01-2022, 01:23 PM
Last Post: deanhystad
Photo How can I use 2 digits format for all the number? plumberpy 6 2,344 Aug-09-2021, 02:16 PM
Last Post: plumberpy
  Regex: a string does not starts and ends with the same character Melcu54 5 2,429 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,214 May-02-2021, 03:45 PM
Last Post: Anldra12
  cursor.execute: How to insert dynamic number in a string? stoeberhai 2 3,520 Mar-18-2021, 12:55 PM
Last Post: stoeberhai
  Regular expression: cannot find 1st number in a string Pavel_47 2 2,425 Jan-15-2021, 04:39 PM
Last Post: bowlofred
  Help getting a string out of regex matt_the_hall 4 2,277 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