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!
@at the front, un-double the quotes and escape them instead (with a backslash).(?<title>.*)with just(.*)(Edit: Actually, apparently Java7 does but not prior stackoverflow.com/a/415635/65387)