Torsten Edler wrote:
> What about this one:
>
> \n(.{0,4}[^0-9]|.[^,])
>
> logic could be described as:
> match anything that has a non-digit in position 1-5
after a newline or
> not a comma at position 6. your original idea of
replacement should
> work fine with this one. I don't know whether textpad
supports this
> syntax - could you please check?
It works!
In Textpad, you have to proceed every control character with
a "\" so
it's pretty ugly, but it is a regEx!
\n\(.\{0,4\}[^0-9]\|.\{5\}[^,]\)
Thank you again for the help!
- JS
http://www.endeavorpub.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "Regex" group.
To post to this group, send email to regex googlegroups.com
To unsubscribe from this group, send email to
regex-unsubscribe googlegroups.com
For more options, visit this group at http://groups.go
ogle.com/group/regex
-~----------~----~----~----~------~----~------~--~---
|