Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
3k views

A library to convert ANSI escapes (terminal formatting/color codes) to HTML

I'm looking for a code library that converts ANSI escape sequences into HTML color, via plain tags or CSS. For example, something that would convert this: ESC[00mESC[01;34mbinESC[00m ...
4
votes
1answer
129 views

How to print a string literally in Python

this is probably really simple but I can't find it. I need to print what a string in Python contains. I'm collecting data from a serial port and I need to know if it is sending CR or CRLF + other ...
2
votes
1answer
110 views

How to detect if the console does support ANSI escape codes in Python?

In order to detect if console, correctly sys.stderr or sys.stdout, I was doing the following test: if hasattr(sys.stderr, "isatty") and sys.stderr.isatty(): if platform.system()=='Windows': ...
1
vote
4answers
75 views

bash - color escapes codes

I have a script that uses escape codes to highlight text matches in its output. All is good except when the output is piped to less, which prints the escape codes e.g. $ echo -e "\033[31m -- Hello ...
1
vote
3answers
140 views

How do i print escape characters as characters?

I'm trying to print escape characters as characters or strings using this code: while((c = fgetc(fp))!= EOF) { if(c == '\0') { printf(" \0"); } else if(c == '\a') { ...
1
vote
1answer
212 views

Java framework for reading / writing ANSI escape-sequenced character streams

Reading ANSI escape sequences is nitty gritty and very easy to get wrong. I am after a library that includes an abstraction for reading escaped sequences preferrably as instances of some nice type. It ...
1
vote
1answer
86 views

Understanding printing bytes in the Python interactive interpreter

I've stumbled upon what I can only describe as a bug in the interactive interpreter for Python. While the bug is rather inconsequential I felt that it was an interesting problem, and a good chance to ...
1
vote
2answers
1k views

Converting ANSI escape sequences to HTML using PHP

This is a similar question to this one. I would like to convert ANSI escape sequences, especially for color, into HTML. However, I would like to accomplish this using PHP. Are there any libraries ...
0
votes
3answers
193 views

How to match “escape” non-printable character in a regex?

I've found a howto, http://answers.oreilly.com/topic/214-how-to-match-nonprintable-characters-with-a-regular-expression/ , but non of the codes, \e, \x1b, \x1B, work for me in Java. EDIT I am ...
0
votes
2answers
168 views

Help scrolling and number of lines in a shell

I'm programming in C and I need to know the number of lines of stdin. After a certain number of lines, I also need to scroll up one line...I used an ANSI escape code (033[1S), but I lose the content ...
0
votes
5answers
1k views

python regex escape characters

We have: >>> str 'exit\r\ndrwxr-xr-x 2 root root 0 Jan 1 2000 \x1b[1;34mbin\x1b[0m\r\ndrwxr-xr-x 3 root root 0 Jan 1 2000 ...