Python Forum
Split string with multiple delimiters and keep the string in "groups"
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Split string with multiple delimiters and keep the string in "groups"
#1
Putting a title on this was hard so hopefully I can do a better job of explaining it here.

Let's say I had a string like this: .nnddd9999999999ddnn. (A) or like this: ''0000aaa0000'' (B)

I would like to be able to split those strings with multiple delimiters, but keep the strings "intact" like this: string A would become:
['.', 'nn', 'ddd', '9999999999', 'ddd', 'nn', '.']
string B would become:
['\'\'', '0000', 'aaa', '0000', '\'\'']

As you can see, each string is split with multiple delimiters, but the "chains of characters" are intact rather than it appearing like:
['.', 'n', 'n', 'd', 'd', 'd', '9', '9', '9'...]

The closest I have gotten is using re.split with a delimiter like (.|n|d|9) but that produces an array like:
['.', '', 'n', '', 'n', '', 'd', ''...]

How could I get this to work? Is using re.split even the best way?
Reply
#2
>>> import re
>>> regex = re.compile(r'((.)\2*)')
>>>
>>> matches = regex.finditer(".nnddd9999999999ddnn.")
>>> s = []
>>> for match in matches:
...     s.append(match.group(0))
...
>>> print(s)
['.', 'nn', 'ddd', '9999999999', 'dd', 'nn', '.']
Reply
#3
Is there really something separating each character, or are you just looking for any repeated character? (You use the term "delimiter", but I don't see any).

If you really just want repeated characters, you could do the following. The grouping is a bit odd, but you can pull the repeated strings out of the first part of each tuple.

>>> s = ".nnddd9999999999ddnn."
>>> re.findall(r"((.)\2+)", s)
[('nn', 'n'), ('ddd', 'd'), ('9999999999', '9'), ('dd', 'd'), ('nn', 'n')]
Or if you really just have a few characters and you want all the strings of them, you could do what you did earlier, but add the repetition (+) operator to them:

>>> re.findall(r"(\.+|n+|d+|9+)",s)
['.', 'nn', 'ddd', '9999999999', 'dd', 'nn', '.']
Reply
#4
(May-11-2020, 02:58 PM)bowlofred Wrote: Is there really something separating each character, or are you just looking for any repeated character? (You use the term "delimiter", but I don't see any).
Repeated characters is correct - I used the term 'delimiter' because the way I was imagining it was each unique character acts as it's own delimiter, because it separates the other characters, if that makes any sense.

(May-11-2020, 02:58 PM)bowlofred Wrote:
>>> re.findall(r"(\.+|n+|d+|9+)",s)
['.', 'nn', 'ddd', '9999999999', 'dd', 'nn', '.']
Thanks for the solution - I prefer this as it's pretty easy to understand whats going on.
Reply
#5
You can do it in a complete different way with more_itertools.split_when, which works also with other types as str.

The generator function split_when takes an iterable (the str e.g.) and a predicate function.
The generator calls the predicate function with last_elent and current_element.


import more_itertools


def predicate(last, current):
    return last != current


for unique in more_itertools.split_when(".nnddd9999999999ddnn.", predicate):
    print("".join(unique))
    # all elements in unique, are separated
    # the join converts it back to a str.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How do I parse the string? anna17 4 250 Apr-10-2024, 10:26 AM
Last Post: DeaD_EyE
  remove gilberishs from a "string" kucingkembar 2 258 Mar-15-2024, 08:51 AM
Last Post: kucingkembar
  Matching string from a file tester_V 5 431 Mar-05-2024, 05:46 AM
Last Post: Danishhafeez
  Python3 string slicing Luchano55 4 595 Feb-17-2024, 09:40 AM
Last Post: Pedroski55
  Retrieve word from string knob 4 479 Jan-22-2024, 06:40 PM
Last Post: Pedroski55
  Writing a Linear Search algorithm - malformed string representation Drone4four 10 922 Jan-10-2024, 08:39 AM
Last Post: gulshan212
  Virtual Env changing mysql connection string in python Fredesetes 0 368 Dec-20-2023, 04:06 PM
Last Post: Fredesetes
  Comparing Dataframe to String? RockBlok 2 396 Nov-24-2023, 04:55 PM
Last Post: RockBlok
  Sample random, unique string pairs from a list without repetitions walterwhite 1 448 Nov-19-2023, 10:07 PM
Last Post: deanhystad
  extract substring from a string before a word !! evilcode1 3 531 Nov-08-2023, 12:18 AM
Last Post: evilcode1

Forum Jump:

User Panel Messages

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