Mmmmm, I don't think that will work well, Peter. (Welcome back, BTW!) I get:
Java.util.regex only does lookbehind if it can determine a maximum length to what it's looking for. Other regex packages may only do it if the expression has a single fixed length. Friedl discusses this, but I don't have my copy with me right now.
It may be possible to adapt this
pattern for the problem at hand, but I don't see an easy way to do it. I think it will be easier to write a pattern to match the
non-whitespace (or anything enclosed in braces) instead. E.g.:
[ June 05, 2004: Message edited by: Jim Yingst ]