Click here to Skip to main content
15,881,380 members
Articles / General Programming / Regular Expressions

Checking for "any character" using regular expressions in multiline text

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
8 Feb 2012CPOL 11.2K  
\S does not / did not work on all versions of RegExp on Microsoft JScript / VBScript (sorry to be vague - I just recall having to avoid it because it was flakey). Instead you could try Start([.|\n]*)End (match everything except newline and newline)Update: Checked some old code: I could...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer DDC OS
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions