- or download this
"foo" =~ m/(oo)/;
{
"bar" =~ /(ar)/;
}
print $1, "\n";
- or download this
$search_string = "123abc";
...
foo(1);
- or download this
123 abc
456 def
123 abc
- or download this
123 abc
456 def
456 def
- or download this
"foo" =~ /(oo)/;
print $1;
- or download this
"foo" =~ m/(oo)/;
{
"bar" =~ /(ar)/;
}
print $1, "\n";
- or download this
$search_string = "123abc";
...
foo(1);