my $title = "<locator>readytips.blogspot.in</locator>";
$title =~m/<locator>([\s\S]+?)<\/locator>/;
print $1;
$title =~m/<locator>(.*?)<\/locator>/;
print $1;
$title =~m/<locator>(.*+)<\/locator>/;
print $1;
$title =~ /<locator>\s+(.*)\s+<\/locator>/;
print $1;
$title =~m/<locator>([\s\S]+?)<\/locator>/;
print $1;
$title =~m/<locator>(.*?)<\/locator>/;
print $1;
$title =~m/<locator>(.*+)<\/locator>/;
print $1;
$title =~ /<locator>\s+(.*)\s+<\/locator>/;
print $1;
No comments :
Post a Comment