in reply to Re: Make string that results from split behave like double-quoted string
in thread Make string that results from split behave like double-quoted string
I would imagine it would be more efficient to do the substitution before the split.
No needless iterating then.
Something like this:
while (<DATA>) { chomp; s/\\n/\n/g; ## Avoiding $_ is sometimes my @ar = split /\|/; ## even more fun than using warn Dumper @ar; ## it. ;P }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Make string that results from split behave like double-quoted string
by chilledham (Friar) on Aug 23, 2013 at 20:22 UTC |