[EMAIL PROTECTED] wrote:

>Hello guys;
>I would like some help for the following.
>Using <propertyregexp> how would you perform the following:
>
>input string="Foo Bar Jeff Blabla"
>replacing prefix="myPrefix"
>result string="myPrefixFoo myPrefixBar myPrefixJeff myPrefixBlabla"
>  
>
 \w* should match every word or u could use the ^ method.


I normally use something like this to match words
/\b([A-Za-z]+)\b


gl, Jim Fuller




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to