Re: special chars as scalar inside regex
- From: noreply@xxxxxxxxx (Gunnar Hjalmarsson)
- Date: Fri, 28 Mar 2008 09:50:13 +0100
Rob Benton wrote:
I've got a problem I think there may be a straight-forward solution to that I just don't know. I have a program that reads a variable-length input file. And the field delimiter of that file is given as an argument. The problem is something like pipe "|" might show up as the delimiter. So is there a way to quote/protect that in the split() function without it being interpreted as a regex special character?
Something like:
./myprog.pl "|"
myprog.pl:
---------
my $delimiter = $ARGV[0];
my @fields = split(/$delimiter/, $line);
That's a FAQ.
perldoc -q "How can I quote a variable to use in a regex?"
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
.
- References:
- special chars as scalar inside regex
- From: Rob Benton
- special chars as scalar inside regex
- Prev by Date: Re: Load hash from a scalar
- Next by Date: Re: special chars as scalar inside regex
- Previous by thread: special chars as scalar inside regex
- Next by thread: Re: special chars as scalar inside regex
- Index(es):
Relevant Pages
|