regex - Regular Expression replace whole word in Hebrew -


i've created working function using vbscript replace first occurrence of whole word problem it's not working in hebrew. works in english when use hebrew doesn't not found pattern. suggestions ? function :

    function regexreplace(strinput,findtext,replacetext)     dim re      set re = new regexp      re.pattern="\b(" & findtext & ")\b"      re.ignorecase=true      regexreplace =re.replace(strinput,replacetext)  end function 


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -