J-086 grep
原文:search the ith file and return lines that match the pattern in s
中文:搜索第i個文件,並回報與條件s相符的行其中的內容。
條件s,可以用[]和$來輔助條件設定,[]中的內容,每個單一的字元
都視為一個符合的條件,如[16],表示任何內容有1 or 6都成立。
$則宣告關鍵字必須在行末。
格式:%grep(i,s)
範例:#FILE 1 "num_test.txt"
#99 {#WRITE 1 %i}
#SHOW %grep(1,"[35]$")
#CLOSE 1
打開或建立一個文件檔:num_test.txt,編號1。
在1到99行寫入數字1到99。
在1號文件檔中搜尋句尾有3及5兩種字元的內容。結果為:
3|5|13|15|23|25|33|35|43|45|53|55|63|65|73|75|83|85|93|95
關閉。