While processing the input/output of a process created with proc_open
, I've been hit with the special terminal ANSI codes (\033[0J
,\033[13G
), aside from not finding a reference to what these particular codes are doing, they are really messing with my preg_match
calls.
Does PHP have a built in method for cleansing these types of strings? Or what would be the correct expression to use with preg_replace
? Please note, I am dealing with non ascii characters, so stripping everything except... will not work.