我遇到了每行捕獲前6個字符的麻煩。假如我有內部的text.txt以下行:捕獲每行的前n個字符
this is a sentence
1234567890
string
我想拿到第10個字符:
this i
123456
string
我試着運行grep -Eo "^[a-zA-Z0-9]*{6}" text.txt
但回收grep的正則表達式在第6個位置,而不是從下一個新線開始。它結束了返回:
this i
s a se
ntence
123456
7890..
我在做什麼錯在這裏?
什麼是'*'在那裏做? – Bergi