Re: ot: regular expression help

2009-07-07 Thread Matthew Seaman
Aryeh M. Friedman wrote: I am attempting to make (without the perl expansions) a regular expansion that when used as a delim will split words on any punction/whitespace character *EXCEPT* "$" (for java people I want to feed it into something like this: for(String foo:input.split([insert regex

Re: ot: regular expression help

2009-07-07 Thread Steve Bertrand
Aryeh M. Friedman wrote: > I am attempting to make (without the perl expansions) a regular > expansion that when used as a delim will split words on any > punction/whitespace character *EXCEPT* "$" (for java people I want to > feed it into something like this: > > for(String foo:input.split([inser

ot: regular expression help

2009-07-07 Thread Aryeh M. Friedman
I am attempting to make (without the perl expansions) a regular expansion that when used as a delim will split words on any punction/whitespace character *EXCEPT* "$" (for java people I want to feed it into something like this: for(String foo:input.split([insert regex here]) ... ___