ANSI questions: “\x1B[?25h” and “\x1BE”

独自空忆成欢 提交于 2021-02-06 19:56:56

问题


  1. What does "\x1B[?25h" do?

  2. How is "\x1BE" different from "\n"? According to http://ascii-table.com/ansi-escape-sequences-vt-100.php it "moves to next line"? Seems like that's what "\n" does?

    I tried echo "xxx\nxxx\n" and echo "xxx\x1BExxx\n" in PHP and they both output the same thing.

Any ideas?

Thanks!


回答1:


These are ANSI escape sequences (also known as VT100 codes) are an early standardisation of control codes pre-dating ASCII.

The escape sequence \x1BE, or Esc+E, is NEL or "Next line", and is used on older terminals and mainframes to denote CR+LF, or \r\n.

The escape sequence \x1B[ (Esc+[) is an example of a Control Sequence Introducer. (\x9B is another single-character CSI.) The control sequence ?25h following it is used to show the cursor.

Most terminals will support these control codes; to enter escape sequences you can type Ctrl+V, Ctrl+[ which should render as ^[ (the C0 code for ESC), followed by the escape code.

References:

  • ANSI escape code
  • C0 and C1 control codes


来源:https://stackoverflow.com/questions/15011478/ansi-questions-x1b25h-and-x1be

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!