Perl中的rindex()函數的操作類似於index()函數,不同之處在於它返回字符串(或文本)中最後一次出現的子字符串(或模式)的位置。如果指定了位置,則返回該位置或該位置之前的最後一次出現。
用法:
# Searches pat in text from given Position
rindex text, pattern, Position
#搜索文字中的拍子
rindex文字,圖案
參數:
- text:要在其中搜索子字符串的字符串。
- pat:要搜索的子字符串。
- index:起始索引(由用戶設置,默認情況下為零)。
返回值:
-1表示失敗,否則最後出現的位置。
示例1:
#!/usr/bin/perl -w
$pos = rindex("WelcomeToGeeksforGeeksWorld", "eks");
print "Position of eks: $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("WelcomeToGeeksforGeeksWorld",
"eks", $pos - 3 );
print "Position of eks: $pos\n";
輸出:
Position of eks: 19 Position of eks: 11
示例2:
#!/usr/bin/perl -w
$pos = rindex("GeeksforGeeks", "eks");
print "Position of eek: $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("GeeksForGeeks", "eks", $pos - 2);
print "Position of eek: $pos\n";
輸出:
Position of eek: 10 Position of eek: 2
相關用法
- Perl chr()用法及代碼示例
- Perl hex用法及代碼示例
- Perl abs()用法及代碼示例
- Perl uc()用法及代碼示例
- Perl tell()用法及代碼示例
- Perl oct()用法及代碼示例
- Perl log()用法及代碼示例
- Perl int()用法及代碼示例
- Perl ord()用法及代碼示例
- Perl each()用法及代碼示例
- Perl sin()用法及代碼示例
- Perl cos()用法及代碼示例
- Perl exp用法及代碼示例
- Perl chop()用法及代碼示例
注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | rindex() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。