File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -97,15 +97,15 @@ for char mapping and removing but string is converted only once.
9797 CE2Ascii . charMapper()
9898 , SequenceCharMapper . instance(" \\ / " , " ___" , " ;:&" )
9999 , new CharMapper () {
100- protected boolean isToBeRemoved (char c ) { return (c < 32 ) || (c > 126 ); }
101- protected char map (char c ) { return c; }
100+ protected boolean isToBeRemoved (char c ) { return (c < 32 ) || (c > 126 ); }
101+ protected char map (char c ) { return c; }
102102 }
103103 );
104104```
105105This example combine
106106 - CE2Ascii mapper.
107107 - Mapper mapping slash, backslash and space into underline and remoces some special chars.
108- - Maper which removes all none ascii chars.
108+ - Maper which keeps onlu printable ascii chars.
109109
110110## CE2Ascii and EE2Ascii
111111
You can’t perform that action at this time.
0 commit comments