mmuser
(Fresh Scripter)
2019-04-26 10:00 AM
Problem in German with the letter ü

We want to copy files from the folder Menü to Menu.

But i dont found a solution that the ü is recognized in my kix-script


AllenAdministrator
(KiX Supporter)
2019-04-26 10:50 PM
Re: Problem in German with the letter ü

Sorry I don't have time to explain this, hopefully you will see what you need to do here.

 Code:
break on

$directory="%userprofile%"
for each $dir in dirplus($directory,"/ad")
  if left($dir.name,3)="Men"
	$special=asc(right($dir.name,1))
	? "" + $special + " is the ascii character code number"
	? "The character you are looking for is:" + chr($special)
  endif
next


Dirplus -
http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=82153#Post82153

How to use UDFs -
http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=81943#Post81943

The rest of the UDFs are here -
http://www.kixtart.org/forums/ubbthreads.php?ubb=postlist&Board=7&page=1