Regular expression challenge - please help !
hello,
I need to create regular expression pattern that matches 2 differnt lines separated by new line in notepad, as follows:
merge point angle reached maximum
angle = 45
I tried to use \n in order to create this match, as follows:
"merge point angle reached maximum\nangle = 45"
however the match failed,
What is the correct way to create this match?
Thanks
eyalco
|