I’m not a pro in Regex, therefore I’m having a difficulty translating this regex pattern to Java.
I believe it would be an easy task to a guy which is familiar enough with Regex.
I have seen similar topics, however – each topic is relevant for a specific regex pattern…
The Pattern is:
@"\<meta name=""title"" content=""(?<title>.*)""\>"
Thanks in advance!
If you want slashes in front of the openning and closing angle-brackets, use this (escaped for Java):
Without them, use this:
Tested here using the unescaped version: