SuperEdi
User: Guest
Search
Please use the Bug Report Form if you think you found a software defect.
Use the Contact Form to send a personal message to Wolfgang.
RSS Feed
Posted on: SuperEdi
Peter G
2009-10-09 18:02:16
Non printable characters
Hi,
I am testing SuperEdi to clean up large text files. I can't find a way to clean out non printable characters. Any advice?
Thanks
Wolfgang Loch
2009-10-09 19:09:49
Re: Non printable characters
Can you please give an example what you mean by "non printable characters"? I guess it should be possible with regular expressions.
2009-10-10 02:02:41
Thanks Wolfgang,
As per the ASCII table listed here showing Non Printable Characters:http://www.idevelopment.info/data/Programming/ascii_table/PROGRAMMING_ascii_table.shtml
DEC #1 to #31. I also need removal of characters such as #34, 44, etc.
Peter
2009-10-11 19:48:12
Figured it out :-)
. . . Thanks
2009-10-11 22:25:52
Search for: [\x00-\x1F]Replace by:[x] Regular expression
2009-10-12 02:24:39
[\x00-\x1F], really helps to have it cover the whole range without keying in each character.
Appreciate your responses.