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
  TypeError: string indices must be integers deneme2 2 589 Feb-14-2025, 12:23 AM
Last Post: deneme2
  How do I parse the string? anna17 8 2,030 Feb-13-2025, 07:08 AM
Last Post: michaeljordan
  question about changing the string value of a list element jacksfrustration 4 1,980 Feb-08-2025, 07:43 AM
Last Post: jacksfrustration
  How to read a file as binary or hex "string" so that I can do regex search? tatahuft 3 979 Dec-19-2024, 11:57 AM
Last Post: snippsat
  [SOLVED] Sub string not found in string ? jehoshua 4 1,343 Dec-03-2024, 09:17 PM
Last Post: jehoshua
  extracting from a string Stephanos 6 1,086 Oct-01-2024, 06:52 AM
Last Post: DeaD_EyE
  Unable to understand the function string.split() Hudjefa 8 2,226 Sep-16-2024, 04:25 AM
Last Post: Pedroski55
Question [SOLVED] How to replace characters in a string? Winfried 2 950 Sep-04-2024, 01:41 PM
Last Post: Winfried
  Destructor method adding in string chizzy101010 3 865 Sep-03-2024, 12:31 PM
Last Post: chizzy101010
  extract an element of a list into a string alexs 5 3,166 Aug-30-2024, 09:24 PM
Last Post: alexs

Forum Jump:

User Panel Messages

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