I'm bad at regular expressions. Is this how I would look for any set
of characters that go more than 60 characters without a white space?
..{60}[^ ]
Also, does this match a block of PHP in an HTML page:
\<\?PHP .* \?\>
of characters that go more than 60 characters without a white space?
..{60}[^ ]
Also, does this match a block of PHP in an HTML page:
\<\?PHP .* \?\>
Comment