![]() |
|
Think about Loose Coupling | |
PerlMonks |
Re: Splitting blunderby Juerd (Abbot) |
on Apr 08, 2002 at 14:11 UTC ( #157503=note: print w/replies, xml ) | Need Help?? |
$string=\\Server\user; Syntax error. Add quotes (And note that \\ will evaluate to a single backslash). @tmp=split(/\/,$string); Syntax error. The backslash escapes the delimiter, leaving an undelimited string. Does anybody have any suggestions? Try posting the code you're working with (but only relevant bits), instead of some broken examples. Learn about using the <code> tag too.
In Section
Seekers of Perl Wisdom
|
|