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」。
我在做什麼錯?
非常感謝! – Chris
不客氣:-) –