描述
此函数的操作与 index 类似,只是它返回 STR 中最后一次出现 SUBSTR 的位置。如果指定了 POSITION,则返回该位置或该位置之前的最后一次出现。
用法
以下是此函数的简单语法 -
rindex STR, SUBSTR, POSITION rindex STR, SUBSTR
返回值
此函数在失败时返回 undef,否则返回最后一次出现的位置。
示例
以下是显示其基本用法的示例代码 -
#!/usr/bin/perl -w
$pos = rindex("abcdefghijiklmdef", "def");
print "Found position of def $pos\n";
# Use the first position found as the offset to the
# next search.
# Note that the length of the target string is
# subtracted from the offset to save time.
$pos = rindex("abcdefghijiklmdef", "def", $pos-3 );
print "Found position of def $pos\n";
执行上述代码时,会产生以下结果 -
Found position of def 14 Found position of def 3
相关用法
- Perl rindex()用法及代码示例
- Perl reset()用法及代码示例
- Perl require用法及代码示例
- Perl return()用法及代码示例
- Perl readline用法及代码示例
- Perl reverse()用法及代码示例
- Perl rand用法及代码示例
- Perl reverse用法及代码示例
- Perl reset用法及代码示例
- Perl rmdir用法及代码示例
- Perl rand()用法及代码示例
- Perl rename()用法及代码示例
- Perl return用法及代码示例
- Perl ref用法及代码示例
- Perl rename用法及代码示例
- Perl read用法及代码示例
- Perl readpipe用法及代码示例
- Perl readdir用法及代码示例
注:本文由纯净天空筛选整理自 Perl rindex Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。