This content has been marked as final.
Show 3 replies
-
1. Re: str.replace can't recognize some character in adobe js
Pedro Marques Oct 31, 2014 5:01 AM (in response to mahehasan)\ missing
str.replace(/\à/g, '1OeL1')
-
2. Re: str.replace can't recognize some character in adobe js
mahehasan Oct 31, 2014 10:16 AM (in response to Pedro Marques)Thanks for your reply.
actually no changed after applied.
File name:Testà è ì.png
0: Testà è ì.png
str.replace(/\à/g, '1OeL1');
1: Testà è ì.png
Is there any other way?
-
3. Re: str.replace can't recognize some character in adobe js
Pedro Marques Nov 2, 2014 2:01 PM (in response to mahehasan)var str = "Testà è ì.png"
str = str.replace(/\à/g, '1OeL1');
alert(str); // = Test1OeL1 è ì.png

