I’ve trying to get the string after the string /Filter and the first
seen “>>” by using this regexp: /<<(.)/Filter(.)>>/im
The problem is that, there is two >> in the input and the regexp takes
until the last >> it detected. How can I make it to get only until the
first >> that it detects ?
AA> I’ve trying to get the string after the string /Filter and the first
seen “>>>” by using this regexp: /<<(.)/Filter(.)>>/im
AA> The problem is that, there is two >> in the input and the regexp
takes
until the last >>> it detected. How can I make it to get only until the
first >>> that it detects ?