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

rest - Spring boot: Request method 'PUT' not supported -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

symfony - imagine_filter() not generating the correct url in LiipImagineBundle -