Hello!
Can someone tell me, why this code doesn't provide me the right result? I would like to split the $text at "</Text>", but it seems to be, that the regex can't find the search expression.
my $text="ABCDE<\/Text>TUVWX";
my @splitted=[];
@splitted=split("\<\/Text\>".$text);
print "0.".$splitted[0]."\n";
print "1.".$splitted[1]."\n";