模拟 .txt 中的 ENTER
有人可以帮忙在 .txt
文件中添加 enter 命令来模拟 enter 吗?
示例:
12345输入548793输入.....
其中条目将是一个数字,然后输入到下一个字段,其中下一个数字将被插入等等......所以它看起来像这样:
12345
548793
etc...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
输入和返回之间有区别(--old skool 打字机的东西--查看维基百科)。
一种是回车,一种是换行;它们的 ASCII 代码是 10 和 13,我会说测试并找出您需要哪一个(如果不是两者)。
通常(在 C++、C# 等中)你会发布 \r\n --> 10 13
There is a difference between an enter and a return (-- old skool typewriter stuff - check Wikipedia on that).
One is a carriage return and one is a line feed; the ASCII codes for those are 10 and 13, I'd say test and find out which one (if not both) you'll need.
Normally (in like C++,C#,etc) you'd post \r\n --> 10 13
只需在文件中添加换行符?
Just add newlines in the file?
在 txt 文件中读取的脚本应该已经识别文本编辑器使用的 EOL 字符。许多脚本语言在读取文件句柄时会自动理解各种 EOL。如果您的没有,您可能必须编写一个正则表达式来查找最常见的正则表达式。
The script that is reading in your txt file should already recognize whichever EOL character the text editor used. Many scripting languages automatically understand the various EOLs when reading from a filehandle. If yours doesn't, you may have to compose a regex that looks for the most common ones.