Posted by vito on 06/10/06 00:59
> Yeah thats it.
>
> (.+)\s{2}
>
> Is a greedy match, it will match to the last two spaces it finds and
> not the first.
> Adding a ? after the brackets make it a non greedy match.
>
> (.+)?\s{2}
>
> Tim
>
thanks but it seems it doesn't work. adding one more ? at the end also
helps nothing. :(
"/DEF=(.+)?\s{2}?/"
[Back to original message]
|