This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate mainline
[perl5.git] / t / op / index.t
CommitLineData
a687059c
LW
1#!./perl
2
79072805 3# $RCSfile: index.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:59 $
a687059c 4
4f593451 5print "1..24\n";
a687059c
LW
6
7$foo = 'Now is the time for all good men to come to the aid of their country.';
8
9$first = substr($foo,0,index($foo,'the'));
10print ($first eq "Now is " ? "ok 1\n" : "not ok 1\n");
11
12$last = substr($foo,rindex($foo,'the'),100);
13print ($last eq "their country." ? "ok 2\n" : "not ok 2\n");
14
15$last = substr($foo,index($foo,'Now'),2);
16print ($last eq "No" ? "ok 3\n" : "not ok 3\n");
17
18$last = substr($foo,rindex($foo,'Now'),2);
19print ($last eq "No" ? "ok 4\n" : "not ok 4\n");
20
21$last = substr($foo,index($foo,'.'),100);
22print ($last eq "." ? "ok 5\n" : "not ok 5\n");
23
24$last = substr($foo,rindex($foo,'.'),100);
25print ($last eq "." ? "ok 6\n" : "not ok 6\n");
d9d8d8de
LW
26
27print index("ababa","a",-1) == 0 ? "ok 7\n" : "not ok 7\n";
28print index("ababa","a",0) == 0 ? "ok 8\n" : "not ok 8\n";
29print index("ababa","a",1) == 2 ? "ok 9\n" : "not ok 9\n";
30print index("ababa","a",2) == 2 ? "ok 10\n" : "not ok 10\n";
31print index("ababa","a",3) == 4 ? "ok 11\n" : "not ok 11\n";
32print index("ababa","a",4) == 4 ? "ok 12\n" : "not ok 12\n";
33print index("ababa","a",5) == -1 ? "ok 13\n" : "not ok 13\n";
34
35print rindex("ababa","a",-1) == -1 ? "ok 14\n" : "not ok 14\n";
36print rindex("ababa","a",0) == 0 ? "ok 15\n" : "not ok 15\n";
37print rindex("ababa","a",1) == 0 ? "ok 16\n" : "not ok 16\n";
38print rindex("ababa","a",2) == 2 ? "ok 17\n" : "not ok 17\n";
39print rindex("ababa","a",3) == 2 ? "ok 18\n" : "not ok 18\n";
40print rindex("ababa","a",4) == 4 ? "ok 19\n" : "not ok 19\n";
41print rindex("ababa","a",5) == 4 ? "ok 20\n" : "not ok 20\n";
4f593451
JH
42
43$a = "foo \x{1234}bar";
44
45print index($a, "\x{1234}") == 4 ? "ok 21\n" : "not ok 21\n";
46print index($a, "bar", ) == 5 ? "ok 22\n" : "not ok 22\n";
47
48print rindex($a, "\x{1234}") == 4 ? "ok 23\n" : "not ok 23\n";
49print rindex($a, "foo", ) == 0 ? "ok 24\n" : "not ok 24\n";