in reply to Re: problematice metashar regexp
in thread problematice metashar regexp
I have to say, this was pretty darn intuitive of you, and I really appreciate the help.
Since I'm trying to stop benig such a hack (ugly code, procedural, use strict, etc.), is this the prettyiest way to while over a string?
Again, thank you so much for your help!#!/usr/bin/perl -w use strict; my $string="wheristhelove"; my @array=split(/\s*/, $string); foreach (@array){ ...
|
|---|