show/hide this revision's text 3 text= to test=

I'm sure this one is easy but I've tried a ton of variations and still cant match what I need. The thing is being too greedy and I cant get it to stop being greedy.

Given the text:

test=this=that=more text follows

I want to just select:

text=

test=

I've tried the following regex

(\S+)=(\S.*)
(\S+)?=
[^=]{1}
...

Thanks all.

show/hide this revision's text 2 fixed typo

I'm sure this one is easy but I've tried a ton of variations and still cant match what I need. The thing is being to too greedy and I cant get it to stop being greedy.

Given the text:

test=this=that=more text follows

I want to just select:

text=

I've tried the following regex

(\S+)=(\S.*)
(\S+)?=
[^=]{1}
...

Thanks all.

show/hide this revision's text 1

Regex greedy issue

I'm sure this one is easy but I've tried a ton of variations and still cant match what I need. The thing is being to greedy and I cant get it to stop being greedy.

Given the text:

test=this=that=more text follows

I want to just select:

text=

I've tried the following regex

(\S+)=(\S.*)
(\S+)?=
[^=]{1}
...

Thanks all.