I have the string <option value=/digital/collections/newsouth62.html>1862</option>
and I want to fetch only the 1862
from th开发者_开发知识库e above string using a regular expression.
pattern = "|<option.*?>(.*?)</option>|";
I have the string <option value=/digital/collections/newsouth62.html>1862</option>
and I want to fetch only the 1862
from th开发者_开发知识库e above string using a regular expression.
pattern = "|<option.*?>(.*?)</option>|";
精彩评论