I want to search for strings like :
cast('"
+ object.method()
+ "' as datetime
The code block above can be in just one line or two lines So the followings expressions :
cast('" + object.method()+"' as datetime
or
cast('"
+ object.method()+ "' as datetime
are good matches too.
So I used as regex pattern the following expression :
(?s)(?i)cast.*?datetime
But the strings I want to match should not exceed 3 lines
How can I express this condition in the regex pattern ?
Thank you in advance.
How about the regex
Example : http://regex101.com/r/hQ9xT1/1
[^\n]+\n
matches anything other than\n
followed by\n
{0,2}
quantifier quantifies the expression maximum 2 times, That is it matches 2 lines.*
matches anthing on the last linedatetime
matchesdatetime