perl 1.0 patch 12: scripts made by a2p doen't handle leading white space right on...
[p5sagit/p5-mst-13.2.git] / t / op.split
CommitLineData
8d063cd8 1#!./perl
2
3# $Header: op.split,v 1.0 87/12/18 13:14:20 root Exp $
4
5print "1..4\n";
6
7$FS = ':';
8
9$_ = 'a:b:c';
10
11($a,$b,$c) = split($FS,$_);
12
13if (join(';',$a,$b,$c) eq 'a;b;c') {print "ok 1\n";} else {print "not ok 1\n";}
14
15@ary = split(/:b:/);
16if (join("$_",@ary) eq 'aa:b:cc') {print "ok 2\n";} else {print "not ok 2\n";}
17
18$_ = "abc\n";
19@ary = split(//);
20if (join(".",@ary) eq "a.b.c.\n") {print "ok 3\n";} else {print "not ok 3\n";}
21
22$_ = "a:b:c::::";
23@ary = split(/:/);
24if (join(".",@ary) eq "a.b.c") {print "ok 4\n";} else {print "not ok 4\n";}