I have an xml file, When writing to the file, i want autorized only the following character:
a b c d e f g h i j k l m n o p q r s t u v w x y z
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
0 1 2 3 4 5 6 7 8 9
/ - ? : ( ) . , ‘ +, SPACE
So if I have an unauthorized character, I replace this character by an authorized , for example:
[é, è, ê] replaced by e
[î, ï] replaced by i
[ü, û] replaced by u
ç replaced by c
[#,! @] Replaced by SPACE
So how I should proceed, if I declare four containers
Container CE= ['é', 'è', 'ê'] ;
Container CI= ['î', 'ï'] ;
Container CRIEN = ['°' , '#', '!', '@'] ;
container CU= ['û','ü'];
Text example :
anytype con = ['çdéjeunè 123 & south st @ Chicago, ILî 60652'];