- or download this
if (/^\{(.*)\}$/) {
$tag = $1;
print "The tag is $tag\n";
}
- or download this
while (/\{(.*?)\}/g) {
$tag = $1;
print "The tag is $tag\n";
}
- or download this
The tag is SOURCETAG
The tag is DATE
...
The tag is SOURCE
The tag is LINE
The tag is TTL