Perl index 函数
描述
此函数返回 STR 中第一次出现 SUBSTR 的位置,从开头(从零开始)开始,或者从 POSITION(如果指定)返回。
语法
以下是此函数的简单语法 −
index STR, SUBSTR, POSITION index STR, SUBSTR
返回值
此函数在失败时返回 -1,否则匹配字符串的位置(第一个字符从零开始)。
示例
以下是显示其基本用法的示例代码 −
#!/usr/bin/perl $string = "That is test"; $index = index ($string, 'is'); print "Position of is in the string $index\n";
执行上述代码时,会产生以下结果 −
Position of is in the string 5