描述
此函数返回 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
相关用法
- Perl index()用法及代码示例
- Perl int用法及代码示例
- Perl int()用法及代码示例
- Perl import用法及代码示例
- Perl sin()用法及代码示例
- Perl abs()用法及代码示例
- Perl kill用法及代码示例
- Perl chop()用法及代码示例
- Perl wantarray用法及代码示例
- Perl gmtime用法及代码示例
- Perl exists()用法及代码示例
- Perl split用法及代码示例
- Perl localtime用法及代码示例
- Perl delete()用法及代码示例
- Perl undef用法及代码示例
- Perl reset()用法及代码示例
注:本文由纯净天空筛选整理自 Perl index Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。