字符串我有一個多行字符串類似如下:查找後的特定文本號碼與正則表達式
2012-15-08 07:04 Bla bla bla blup
2012-15-08 07:05 *** Error importing row no. 5: The import of this line failed because bla bla
2012-15-08 07:05 Another text that I don't want to search...
2012-15-08 07:06 Another text that I don't want to search...
2012-15-08 07:06 *** Error importing row no. 5: The import of this line failed because bla bla
2012-15-08 07:07 Import has finished bla bla
我想是提取與正則表達式的幫助錯誤的所有行數(使用PowerShell) 。所以我需要找到「***錯誤導入行號」和下面的「:」之間的數字,因爲這總是會給我行號。
我看了其他各種RegEx問題,但說實話,答案就像我的中國人。
試過用http://regexr.com/幫助建正則表達式,但都沒有成功,到目前爲止,例如有以下模式:
"Error importing row no. "(.?)":"
任何提示?
@AvinashRaj謝謝,但這是行不通的 – Patric