Python Forum
converting a substring of digits and keep what follows
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
converting a substring of digits and keep what follows
#1
i have a string with digits (possibly with a period) and something else at the end such as '1234.5foobar'. i want to extract and convert the number and get a string of what remains. if it were already a function, it would probably return a 2-tuple like (number,remaining_string). the use case goal is making a function that converts expressed time intervals in various fixed units such as '1wk1day3min5' -> 691385 or '2m7s' -> 127 or '1.1h' -> 3960. i know how to do this in single character steps as i have implemented this in C, before. i need the same thing in Python, now, and wonder if there is a shorter way using only what comes with Python (so i do not need to require the user of my code to install anything but Python, itself).
Tradition is peer pressure from dead people

What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Reply


Messages In This Thread
converting a substring of digits and keep what follows - by Skaperen - Apr-21-2018, 03:44 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  extract substring from a string before a word !! evilcode1 3 1,773 Nov-08-2023, 12:18 AM
Last Post: evilcode1
  [SOLVED] [regex] Why isn't possible substring ignored? Winfried 4 2,055 Apr-08-2023, 06:36 PM
Last Post: Winfried
  ValueError: substring not found nby2001 4 10,948 Aug-08-2022, 11:16 AM
Last Post: rob101
  Match substring using regex Pavel_47 6 2,515 Jul-18-2022, 07:46 AM
Last Post: Pavel_47
  Substring Counting shelbyahn 4 7,359 Jan-13-2022, 10:08 AM
Last Post: krisputas
  Python Substring muzikman 4 3,279 Dec-01-2020, 03:07 PM
Last Post: deanhystad
  Single digits seem to be greater than double digits Frosty_GM 4 5,107 Nov-20-2020, 10:13 AM
Last Post: DeaD_EyE
  Removing items from list if containing a substring pythonnewbie138 2 2,896 Aug-27-2020, 10:20 PM
Last Post: pythonnewbie138
  Substring and If then Condition to create column Chandan 2 3,065 Jan-23-2020, 08:40 AM
Last Post: buran
  ValueError: substring not found hoangthai10788 2 5,798 Sep-23-2019, 05:34 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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