- Perl 基础
- Perl - 首页
- Perl - 简介
- Perl - 环境
- Perl - 语法概览
- Perl - 数据类型
- Perl - 变量
- Perl - 标量
- Perl - 数组
- Perl - 哈希
- Perl - IF...ELSE
- Perl - 循环
- Perl - 运算符
- Perl - 日期和时间
- Perl - 子程序
- Perl - 引用
- Perl - 格式
- Perl - 文件 I/O
- Perl - 目录
- Perl - 错误处理
- Perl - 特殊变量
- Perl - 编码标准
- Perl - 正则表达式
- Perl - 发送电子邮件
- Perl 高级
- Perl - 套接字编程
- Perl - 面向对象
- Perl - 数据库访问
- Perl - CGI 编程
- Perl - 包和模块
- Perl - 进程管理
- Perl - 嵌入式文档
- Perl - 函数引用
- Perl 实用资源
- Perl - 问题和解答
- Perl - 快速指南
- Perl - 实用资源
- Perl - 讨论
Perl rindex 函数
描述
该函数的操作与 index 类似,但它返回 SUBSTR 在 STR 中最后一次出现的位置。如果指定了 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_function_references.htm
广告