in reply to Regex question
my $string = "hello\t\\"; $string =~ s/\t\\//g; [download]
this should return the value of $string as simply hello
humbly -c