> I need to use refind to deal with strings containing accented characters like
> ?itt? l?su, but it doesn't seem to find them. Also when using it with cyrillic
> characters , it won't find individual characters, but if I test for [\w] it'll
> work.
works fine for me using unicode data:
<cfprocessingdirective pageencoding="utf-8">
<cfscript>
t="Tá mé in ann gloine a ithe; Ní chuireann sé isteach nó amach orm";
s="á";
writeoutput("search:=#t#<br>for:=#s#<br>found at:=#reFind(s,t,1,false)#");
</cfscript>
what's the encoding for your data?
ogre11 - 30 Oct 2007 14:39 GMT
I wasnt using cfprocessingdirective, thanks!