2015-09-08 84 views
1

我需要做一個查找&替換(不在代碼中,在VB IDE或文本編輯器中)。使用RegEx替換行需要幫助

我需要:

則IsNumeric(CINT(whatevertextishere))

,並更改爲

則IsNumeric(whatevertextwasthere)

我已經嘗試過:

IsNumeric\(CInt\(.*\)\) 

for find,and IsNumeric($1) for replace,the find works,but the replace does not。它只是用文字IsNumeric($1)替換它,而不是放置匹配的文本,它應該是「whatevertextishere」。

我在做什麼錯?

回答

1

您沒有在正則表達式定義的捕獲組(括號轉義):

IsNumeric\(CInt\((.*)\)\) 
+0

非常感謝! – Chris

+0

不客氣:-) –