Hi for this you can use the tcl command 'string map'
take a look at http://wiki.tcl.tk/2819 I think that the String Replacer transformer use this command in one off its forms, the other use a regualr expresion, if not you can write you own tcl function, somthing like this proc map {a} { set cLst {é e á a ....} if {[FME_AttributeExist $a ]} { FME_SetAttribute $a [string map $sLst [ FME_GetAttribute $a ] ] } } Peter >From: "abel.ludba" <[EMAIL PROTECTED]> >Reply-To: [email protected] >To: [email protected] >Subject: [fme] Accent remover >Date: Mon, 15 Jan 2007 16:14:32 -0000 > >I'd like to remove all accents from a string and get new string accent >free. Exemple for « été » I'd like to get "ete" or enventualy "ETE". >Off course, I tried CASECHANGER but, it doesn't remove accents. For my >string : « été », I got ÉTÉ?!! Could you please help? >Thank you. > >Abel > > > _________________________________________________________________ Vælg selv hvordan du vil kommunikere - skrift, tale, video eller billeder med MSN Messenger: http://messenger.msn.dk For insights into what's up at Safe Software and what's on the development horizon, visit Safe's blog at spatial-etl.blogspot.com. Safe Software has also made slides available that outline enhancements planned for FME 2007. The slides are from the "Road Ahead" presentation given on Day 2 of the FME Worldwide Users Conference. To view these slides, visit www.safe.com/2006uc. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/fme/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/fme/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
