|
Posted by vito on 06/10/06 02:24
> Good explanation, totally correct, but nort the right regex:
> (.+)?\s{2}
> means:
> (A random character 1 or mor times) zero or once.
>
> explanation was good, regex should be:
>
> (.+?)\s{2}
>
> As I've learned, correct me if I'm wrong, the ? to make a selector
> non-greedy should be directly after the selector itself AFAIK.
>
you're correct! Thanks, it works.
[Back to original message]
|