So I'm trying to a parse a file that has text in this format:
outerkey = (innerkey = innervalue)
It gets more complex. This is also legal in the file:
outerkey = (innerkey = (twodeepkey = twodeepvalue)(twodeepkey2 = twodeepvalue2))
So I want to basically capture only the outerkey's text. I cannot guarantee that all of the text will be on one line. It is possible that the value be on multiple lines. And there is more than one item in the file.
So here's my regex so far:
[^\s=]+\s*=\s*(\(\s*.*\s*\))
The goal is for me to simply replace the first part [^\s=]+
with the key I want to search on and I get the entire text of the outer parenthesis.
Here's the problem. My regex will not only capture the text I want to capture, but it will also capture the text from the next group since regex's are greedy. Making it not greedy would not work either since it will stop capturing at the first closing parenthesis.
Ultimately, if I have the following string
foo =
(
ifoo = ifoov
)
bar =
(
ibar =
(iibar = iibarv)
(iibar2 = iibarv2)
)
I want the groups to match
(
ifoo = ifoov
)
and
(
ibar =
(iibar = iibarv)
(iibar2 = iibarv2)
)
Right now it will match
(
ifoo = ifoov
)
bar =
(
ibar =
(iibar = iibarv)
(iibar2 = iibarv2)
)
By the way, I am running this in multiline and singleline mode.
Any ideas? Thanks!