/<html_tag>(.*)<\/html_tag>. It is because .* doesn't match newline characters
For solution using patterm
(?s)/<html_tag>(.*?)<\/html_tag>
Wow Easy For Beginner
/<html_tag>(.*)<\/html_tag>. It is because .* doesn't match newline characters
(?s)/<html_tag>(.*?)<\/html_tag>
0 comments:
Post a Comment