Python Forum
How to split at specified delimiter
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to split at specified delimiter
#4
metulburr Wrote:Or you could use regex, which i am horrible at.
Regex is not difficult to learn and it is very powerful for some tasks
>>> import re
>>> regex = re.compile(
... r"\d*" # zero or more digits
... r"E"   # the letter E
... r"\d*" # again zero or more digits
... )
>>> match = regex.search('VA004L200E2T99')
>>> match.group()
'200E2'
Reply


Messages In This Thread
How to split at specified delimiter - by SriRajesh - Dec-27-2018, 01:00 PM
RE: How to split at specified delimiter - by Gribouillis - Dec-27-2018, 02:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 1,811 Nov-09-2023, 10:56 AM
Last Post: mg24
  Context-sensitive delimiter ZZTurn 9 1,730 May-16-2023, 07:31 AM
Last Post: Gribouillis
  Read csv file with inconsistent delimiter gracenz 2 1,351 Mar-27-2023, 08:59 PM
Last Post: deanhystad
  Delimiter issue with a CSV file jehoshua 1 1,413 Apr-19-2022, 01:28 AM
Last Post: jehoshua
  How to create new line '/n' at each delimiter in a string? MikeAW2010 3 2,982 Dec-15-2020, 05:21 PM
Last Post: snippsat
  copy content of text file with three delimiter into excel sheet vinaykumar 0 2,438 Jul-12-2020, 01:27 PM
Last Post: vinaykumar
  How to print string multiple times separated by delimiter Mekala 1 2,016 May-23-2020, 09:21 AM
Last Post: Yoriz
  How to split string after delimiter SriRajesh 1 2,188 Sep-11-2019, 11:25 AM
Last Post: metulburr
  Merge 2 lines with delimiter Buddhism 9 4,666 May-05-2019, 02:43 AM
Last Post: Buddhism
  Parsing text list to csv using delimiter discarding non-interesting data murdock72 3 4,354 Feb-22-2017, 06:38 PM
Last Post: buran

Forum Jump:

User Panel Messages

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