in reply to Regex question

one other path you may want to head down is getting rid of your tab and following slash using the s/// operator:

my $string = "hello\t\\"; $string =~ s/\t\\//g;

this should return the value of $string as simply hello

humbly -c