Is it possible to use a regular expression to detect anything that is NOT an \"empty string\" like this:
string s1 = \"\"; string s2 = \" \"; string s3 = \"
Assertions are not necessary for this. \S should work by itself as it matches any non-whitespace.
\S