- Rexx 教程
- Rexx - 首页
- Rexx - 概述
- Rexx - 环境
- Rexx - 安装
- Rexx - 插件安装
- Rexx - 基本语法
- Rexx - 数据类型
- Rexx - 变量
- Rexx - 运算符
- Rexx - 数组
- Rexx - 循环
- Rexx - 决策
- Rexx - 数字
- Rexx - 字符串
- Rexx - 函数
- Rexx - 堆栈
- Rexx - 文件 I/O
- Rexx - 文件函数
- Rexx - 子程序
- Rexx - 内置函数
- Rexx - 系统命令
- Rexx - XML
- Rexx - Regina
- Rexx - 解析
- Rexx - 信号
- Rexx - 调试
- Rexx - 错误处理
- Rexx - 面向对象
- Rexx - 可移植性
- Rexx - 扩展函数
- Rexx - 指令
- Rexx - 实现
- Rexx - Netrexx
- Rexx - Brexx
- Rexx - 数据库
- 手持式和嵌入式
- Rexx - 性能
- Rexx - 最佳编程实践
- Rexx - 图形用户界面
- Rexx - Reginald
- Rexx - Web编程
- Rexx 有用资源
- Rexx - 快速指南
- Rexx - 有用资源
- Rexx - 讨论
Rexx - 字符串
Rexx 中的字符串由一系列字符表示。以下程序是字符串的示例:
/* Main program */ a = "This is a string" say a
上述程序的输出如下:
This is a string
让我们讨论一些 Rexx 中可用于字符串的方法。
序号 | Rexx 中可用的字符串方法 |
---|---|
1 | left
此方法返回字符串左侧的特定数量的字符。 |
2 | right
此方法返回字符串右侧的特定数量的字符。 |
3 | length
此方法返回字符串中的字符数。 |
4 | reverse
此方法以反向格式返回字符。 |
5 | compare
此方法比较两个字符串。如果“string1”和“string2”相同,则返回“0”。否则,它返回第一个不匹配字符的位置。 |
6 | copies
此方法复制字符串 n 次。 |
7 | substr
此方法从特定字符串中获取子字符串。 |
8 | pos
此方法返回一个字符串在另一个字符串中的位置。 |
9 | delstr
此方法从字符串中删除子字符串。 |
广告