We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5773b8 commit 5c6dfaeCopy full SHA for 5c6dfae
wd_core.au3
@@ -1464,7 +1464,8 @@ EndFunc ;==>__WD_CloseDriver
1464
; Example .......: No
1465
; ===============================================================================================================================
1466
Func __WD_EscapeString($sData)
1467
- Local $sEscaped = StringRegExpReplace($sData, "([" & $_WD_ESCAPE_CHARS & "])", "\\$1")
+ Local $sRegEx = "([" & $_WD_ESCAPE_CHARS & "])"
1468
+ Local $sEscaped = StringRegExpReplace($sData, $sRegEx, "\\$1")
1469
Return SetError($_WD_ERROR_Success, 0, $sEscaped)
1470
EndFunc
1471
0 commit comments