/ Published in: Regular Expression
This expression grabs the token preceding the = sign which precedes the keyword new. The expression within the parenthesis is a positive lookahead which matches an equal sign followed by zero or more spaces, then zero or more characters (for example an explicit cast) followed again by zero or more spaces, finally the keyword new, and at least one space.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
\S*\s*(?=\=\s*\S*\s*new\s)