show/hide this revision's text 2 added 67 characters in body

Well, if you had keywords, how would you easily differentiate them from actually matched text? How would you handle whitespace?

Source text Company: A Dept.: B

Standard regex:

Company:\s+(.+)\s+Dept.:\s+(.+)

Or even:

Company: (.+) Dept. (.+)

Keyword regex (trying really hard...hard not get a strawman...)

"Company:" whitespace.oneplus group(any.oneplus) whitespace.oneplus "Dept.:" whitespace.oneplus group(any.oneplus)

Or simplified:

"Company:" space group(any.oneplus) space "Dept.:" space group(any.oneplus)

No, it's probably not better.

show/hide this revision's text 1

Well, if you had keywords, how would you easily differentiate them from actually matched text? How would you handle whitespace?

Source text Company: A Dept.: B

Standard regex:

Company:\s+(.+)\s+Dept.:\s+(.+)

Keyword regex (trying really hard...)

"Company:" whitespace.oneplus group(any.oneplus) whitespace.oneplus "Dept.:" whitespace.oneplus group(any.oneplus)

No, it's probably not better.