my $text = "Here is [id=327]a very cool document[/id] for you"; $text =~ /\[id=([0-9]*)\](.*)\[\/id\]/i; my $tag = "$2"; my $before = $`; my $after = $'; print "$before$tag$after\n"; #### Here is a very cool document for you
## Here is a very cool document for you