Skip to content
Advertisement

RegEx: lookahead get only first occurrence

(modified) Trying to get only first match of condition (?<=Location:.*?().*?(?=))

Here is data:

JavaScript

and it returns:

JavaScript

Is there a possibility to match only first occurrence of each match (so i need 3 matches: 1, 3 and 5) with lookbehind and lookahead and without grouping or other conditions?

Found solution with a help:

JavaScript

Advertisement

Answer

You may use

JavaScript

See the regex demo #1 and regex #2 demo.

Details:

  • (?<=Location:[^(]*([^(]*() – a location preceded with Location:, zero or more chars other than (, a (, and then again zero or more chars other than ( and then a (
  • [^)]* – zero or more chars other than )
  • (?=)) – a ) char must appear immediately on the right.
  • (?<=Location:[wW]*?() – a positive lookbehind that matches a location that is immediately preceded with
    • Location: – a Location: string
    • [wW]*? – zero or more chars as few as possible
    • ( – a ( char
  • (.*?) – Group 1: zero or more chars other than line break chars, as few as possible
  • (?=)) – immediately to the right, there must be a ) char.
  • (?![wW]*1) – no Group 1 value cannot be located further in the string.
Advertisement