你好,我有以下文字:如何使用正則表達式來獲取以下模式?
some text,+
this field is another parameter
this is the final of the field
t10681374flp
t10681375flp
我想下面兩行相匹配:
t10681374flp
t10681375flp
的規則是,說這些話的「T」開頭,以「P」結束, 我想:
grep -e t*p testing
但是我:
this field is another parameter
t10681374flp
t10681375flp
所以,我真的想欣賞支持,以克服這一任務,
'grep -e^t。* p $ testing'應該這樣做。 –
@詹姆斯布朗謝謝我真的很感謝支持 – neo33