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
Post a Comment