P
P
PythonBeginner202020-02-24 18:02:21
Python
PythonBeginner20, 2020-02-24 18:02:21

What is the regular expression for parsing the next line?

Hello, I need to parse the lines:

"
A one text. (SOME:TICKER)Another one may (GGWP:CS)Something new (HERE:NOT)
"


From this text I need to take everything that is not in brackets. What would Regex look like for such text?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Stalker_RED, 2020-02-24
@PythonBeginner20

Something like this? (.+?)(?:\(.+?\))
https://regex101.com/r/PK7mBo/1/

D
Dmitry, 2020-02-24
@dmtrrr

The easiest way is to cut out what is in brackets.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question