I'm trying to write a regex that does the following:
Looks for any instance of the string \par followed by anything but a space
and replace it with \par and a space and the character that followed it.
So, if I have \parThe
I want
\par The
Here's what I'm trying, and it doesn't work:
rereplace(mystring, "\par([[::alnum::]]+)", "\par \1", "all")
Help?
Thanks.
Deanna
--
Deanna Schneider
UWEX-Cooperative Extension
Interactive Media Developer
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

