Hi,
I need to delete the following red words. The following regular expression can be executed successfully in powershell, but it is not supported in QM. How do I modify it
s.fix(abc(h SCI.SCI_GETTEXTRANGE 0 &t))
https://learn.microsoft.com/en-us/dotnet...definition
Macro Macro22
Powershell code:
I need to delete the following red words. The following regular expression can be executed successfully in powershell, but it is not supported in QM. How do I modify it
s.fix(abc(h SCI.SCI_GETTEXTRANGE 0 &t))
https://learn.microsoft.com/en-us/dotnet...definition
Macro Macro22
_s=
;s.fix(abc(h SCI.SCI_GETTEXTRANGE 0 &t))
_s.replacerx("abc\((?:(?>[^()]*)|\((?<Open>)|\)(?<-Open>))*(?(Open)(?!))\)")
Powershell code: