如果你做了上一个练习的加分习题,你应该已经知道了各种文件相关的命令(方法/函数)。你应该记住的命令如下:
* close – 关闭文件。跟你编辑器的 `文件->储存`filename = ARGV.first
script = $0
puts "We're going to erase #{filename}."
puts "If you don't want that, hit CTRL-C (^C)."
puts "If you do want that, hit RETURN."
print "? "
STDIN.gets
puts "Opening the file..."
target = File.open(filename, 'w')
puts "Truncating the file. Goodbye!"
target.truncate(target.size)
puts "Now I'm going to ask you for three lines."
print "line 1: "; line1 = STDIN.gets.chomp()
print "line 2: "; line2 = STDIN.gets.chomp()
print "line 3: "; line3 = STDIN.gets.chomp()
puts "I'm going to write these to the file."
target.write(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")
puts "And finally, we close it."
target.close().. 是一样的意思。
* read – 读取文件内容。你可以把结果赋给一个变量。
* readline – 读取文件文字中的一行。
* truncate – 清空文件,请小心使用该命令。
* write(stuff) – 将 stuff 写入文件
这是你现在应该知道的重要命令。有些命令需要接收参数,但这对我们并不重要。你只要记住 write 的用法就可以了。 write 需要接收一个字串作为参数,从而将该字符串写入文件。
让我们来使用这些命令做一个简单的文字编辑器吧:
~~~
filename = ARGV.first
script = $0
puts "We're going to erase #{filename}."
puts "If you don't want that, hit CTRL-C (^C)."
puts "If you do want that, hit RETURN."
print "? "
STDIN.gets
puts "Opening the file..."
target = File.open(filename, 'w')
puts "Truncating the file. Goodbye!"
target.truncate(target.size)
puts "Now I'm going to ask you for three lines."
print "line 1: "; line1 = STDIN.gets.chomp()
print "line 2: "; line2 = STDIN.gets.chomp()
print "line 3: "; line3 = STDIN.gets.chomp()
puts "I'm going to write these to the file."
target.write(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")
puts "And finally, we close it."
target.close()
~~~
这是一个大文件,大概是你键入过的最大的文件。所以慢慢来,仔细检查,让它能够跑起来。有一个小技巧就是你可以让你的脚本一部分一部分地跑起来。先写 1-8 行,让它能跑起来,再多做 5 行,再接著几行,以此类推,直到整个脚本都可以跑起来为止。
# 你应该看到的结果
* * * * *
你将看到两样东西,一样是你新脚本的输出:
~~~
$ ruby ex16.rb test.txt
We're going to erase 'test.txt'.
If you don't want that, hit CTRL-C (^C).
If you do want that, hit RETURN.
?
Opening the file...
Truncating the file. Goodbye!
Now I'm going to ask you for three lines.
line 1: To all the people out there.
line 2: I say I don't like my hair.
line 3: I need to shave it off.
I'm going to write these to the file.
And finally, we close it.
$
~~~
这是一个大文件,大概是你键入过的最大的文件。所以慢慢来,仔细检查,让它能够跑起来。有一个小技巧就是你可以让你的脚本一部分一部分地跑起来。先写 1-8 行,让它能跑起来,再多做 5 行,再接著几行,以此类推,直到整个脚本都可以跑起来为止。
# 加分习题
* * * * *
1. 如果你觉得自己没有弄懂的话,用我们的老方法,在每一行之前加上注释,为自己理清思路。就算不能理清思路,你也可以知道自己究竟具体哪里没弄清楚。
2. 写一个和上一个习题类似的脚本,使用` read `和` ARGV` 读取你刚才新建立的文件。
3. 文件中重复的地方太多了。试着用一个 `target.write()` 将 `line1` , `line2 `, `line3` 输出,你可以使用字符串、格式化字串以及转义序列。
4. 找出为什么我们打开档案时要使用 w 模式,而你真的需要 `target.truncate()` 吗?去看 Ruby 的 `File.open `函数找答案吧。
- 笨方法更简单
- 习题 00: 准备工作
- 习题 01: 第一个程序
- 习题 02: 注释和#号
- 习题 03: 数字和数学计算
- 习题 04: 变量的命名
- 习题 05: 更多的变量和输出
- 习题 06: 字符串和文字
- 习题 07: 更多输出
- 习题 08: 输出,输出
- 习题 09: 输出,输出,输出~
- 习题 10: 那是啥?
- 习题 11: 提问
- 习题 12: 模块
- 习题 13: 参数,解包,参数
- 习题 14: 提示和传递
- 习题 15: 读取文件
- 习题 16: 操作文件
- 习题 17: 更多的文件操作
- 习题 18: 命名,变量,代码,函数
- 习题 19: 函数和变量
- 习题 20: 函数和文件
- 习题 21: 函数可以传入信息
- 习题 22: 到现在你学到了什么?
- 习题 23: 阅读一些代码
- 习题 24: 更多练习
- 习题 25: 更多更多的练习
- 习题 26: 恭喜你,现在来考试了!
- 习题 27: 记住逻辑关系
- 习题 28: Boolean表达式练习
- 习题 29: 如果
- 习题 30: Else 和 If
- 习题 31: 做出判断
- 习题 32: 循环和数组
- 习题 33: While
- 习题 34: 存取数组里的元素
- 习题 35: 分支和函数
- 习题 36: 设计和测试
- 习题 37: 重视各种符号