- 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 - 行数
此函数返回 1 或输入流中剩余的行数。文件名作为函数的输入给出。
语法
lines(filename)
参数
filename − 这是文件名。
返回值
此函数返回 1 或输入流中剩余的行数。
示例
/* Main program */ do while lines(Example.txt) > 0 line_str = linein(Example.txt) say line_str end
在上面的程序中,需要注意以下几点。
lines 函数读取 Example.txt 文件。
while 函数用于检查 Example.txt 文件中是否存在更多行。
对于从文件中读取的每一行,line_str 变量都保存当前行的值。然后将其发送到控制台作为输出。
输出 − 当我们运行上述程序时,我们将得到以下结果。
Example1 Example2 Example3
lines 命令还有另一种变体,如下所示:
语法
lines(filename,C)
参数
filename − 这是文件名。
C − 这是提供给函数的常数值。此值指定要从文件中读取的剩余行数。
返回值
返回值是从文件中剩余要读取的行数。
示例
/* Main program */ count = lines(Example.txt,C) say count line_str = linein(Example.txt) say line_str count = lines(Example.txt,C) say count
当我们运行上述程序时,我们将得到以下结果。
输出
3 Example1 2
rexx_functions_for_files.htm
广告