in reply to (cLive ;-) Re: How do I count characters
in thread How do I count characters
You could of course embed the comments into the regex itself, with the /x modifier:
/ \s* # Leading whitespace ( # Save match group . # Any character {0,$limit} # Up to $limit times ) # End of match group \b # Word boundary /gsx # Global, single line, extended
- Yes, I reinvent wheels.
- Spam: Visit eurotraQ.
|
|---|