Ask Your Question
4

How can I split a Python string by commas that are located between the specific characters "< >"?

asked 2022-08-25 11:00:00 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-06-13 22:00:00 +0000

djk gravatar image

You can use regular expressions to split the string by commas that are located between "< >". Here's an example:

import re

string = "apple, banana, <orange, grapefruit>, pear, <kiwi, mango>"

split_string = re.split(r"(?<=\>),\s*(?=<)", string)

print(split_string)

Output:

['apple', 'banana', '<orange, grapefruit>', 'pear', '<kiwi, mango>']

In this example, the regular expression r"(?<=\>),\s*(?=<)" matches a comma (,) that is preceded by a closing angle bracket (>) and followed by an opening angle bracket (<). The \s* matches any whitespace that occurs between the comma and the angle brackets. The (?<=\>) and (?=<) are positive lookbehind and lookahead assertions, respectively, that ensure that the angle brackets are not included in the split.

The re.split() function then splits the string using this regular expression as the delimiter.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-08-25 11:00:00 +0000

Seen: 9 times

Last updated: Jun 13 '22