📄 l33.1b
字号:
#printWrite the command that will changeeither the word "that" or the word "than"into "this", and then print the result. Type"answer COMMAND" on a line, where COMMAND isthat string. (That is, COMMANDwill be of the form s/.../.../pwhere you have replaced the ... with the right stuff.)You can test this out by going into the editor andtyping in a line that contains "that" and "than"and trying to change it. You should do that until youare sure you have the command right.#copyin#user#uncopyin#match s/tha[nt]/this/p#match s/tha[tn]/this/p#match s/tha[nt]/this/gp#match s/tha[tn]/this/gp#log#next34.1a 1034.2a 5
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -