Hi, I'm wondering if there is a way in python to process a string containing terminal escape characters. Example: Please consider the following string:
str = ''aaaa\x1B[K\x1B[D\x1B[D\x1B[D\x1B[D\x1B[C\x1B[C\x1B[C\x1B[C \x1b[d\x1b[d\x...@q\x1b[@q\x...@q'' as a result of printing it (print str), the console's output is as follows: aaqqqaa Having such string with the escape codes I would like to call a function that would process the input and return the "aaqqqaa" string. Of course I'm aware that any information about colors will be missed. I'm wondering if the curses module has such functionality. -- http://mail.python.org/mailman/listinfo/python-list