Jump to content

Recommended Posts

Posted

Hello everybody.

I plan to create a tools for rename files and directory, and I find that the function _StringProper not function correctly for the French laguage, because the __CharacterIsApha function not use French caracters.

So I modifie the function like this :

Func __CharacterIsApha($s_Str)
    Local $a_Alpha = "abcdefghijklmnopqrstuvwxyzÿîïéêèëâàáæôûùüç"
    Return (StringInStr($a_Alpha, $s_Str))
EndFunc  ;==>__CharacterIsApha

I hope it will help other poeple from others countries to modifie and use it for theire own language.

Best regards.

Thierry

Best Regards.Thierry

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...