简体   繁体   English

这个字符是什么意思?

[英]What is the meaning of this character?

I am trying to recreate an input file for an attendance software, but it won't take the input. 我正在尝试为考勤软件重新创建输入文件,但不会接受输入。 When I opened a legacy input file with vim it showed ^K character in light blue colour instead of a new line character shown in GUI text editors. 当我使用vim打开旧输入文件时,它以浅蓝色显示^K字符,而不是在GUI文本编辑器中显示换行符。 What is the meaning of this character and how can I recreate this in PHP? 这个字符的含义是什么,如何在PHP中重新创建它?

在此处输入图片说明

To know which character it is, put the cursor on ^K and press g a in normal-mode. 要知道它是哪个字符,请将光标放在^K ,然后在正常模式下按g a

You will get probably: 您可能会得到:

<^K>  11,  Hexa 0b,  Octal 013

It has ascii code 11 so it might be the vertical tab . 它的代码为ASCII 11因此可能是vertical tab You can create it with this combination Ctrl-v + Ctrl-k 您可以使用此组合Ctrl-v + Ctrl-k来创建它

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM