carriage-return 相关问题

回车是ASCII码,Unicode,EBCDIC和许多其他代码中的控制字符之一。它命令打印机或其他输出系统(例如系统控制台的显示器)将光标的位置移动到同一行上的第一个位置。

将 chr(13) 写入文件时,读取时会给出 chr(10)

我有一段简单的代码让我大吃一惊: 如果 __name__ == '__main__': writen_text = chr(13) 文件=打开('错误','w') 文件.write(writen_text) 文件.close() 文件=打开('但是...

回答 2 投票 0

删除字符串中的换行符和回车符

我正在尝试计算文本区域中的字符数,但它也计算“ “ 和 ” " 作为字符;我如何删除它们以便只计算实际的文本输入? $pure_chars = preg_replace("...

回答 2 投票 0

如何在 VS Code 中禁用 ^M 行结尾?

VS Code 已决定开始在任何内容的末尾添加 ^M 字符 我编辑的行。 它们在编辑器中不可见,但 git diff 会拾取它们。 以前没有这样做过,所以我猜我同意了......

回答 2 投票 0


更换 和 所以可以有下一行

我从 csv 文件中读取了一个字符串,如下所示 BenFeature = fieldSet.readString("ben_feature").replaceAll(" “,” ”); 我的文件中的文本 ben_feature = "Testi...

回答 1 投票 0

Python 回车

我正在使用Python 2.7.13(在Kali 4.9.0 amd64中),并且我已经尝试了我能找到的print()语句的每个变体(带有正确的未来导入语句),我最终得到好的...

回答 1 投票 0

jQuery next 在表中输入

我在表格中有一系列输入和选择元素: <... 我在表格中有一系列输入和选择元素: <table id='tbl-edit-company' class='tbl-form tbl-contact-form'> <tbody> <tr> <td><label for='edit-company-company-name'>Company Name</label></td> <td><input id='edit-company-company-name' class='contact-input' name='edit-company-company-name' type='textbox' maxlength='50' value=''></td> </tr> <tr> <td><label for='cmbo-edit-company-business-type'>Business Type</label></td> <td> <select id='cmbo-edit-company-business-type' class='contact-combo' name='cmbo-edit-company-business-type'> <option value='0'> - </option> <option value='1'>Construction</option> <option value='2'>Garage</option> <option value='3'>Financial</option> <select> </td> </tr> <tr> <td><label for='edit-company-branch-name'>Branch</label></td> <td><input id='edit-company-branch-name' class='contact-input' name='edit-company-branch-name' type='textbox' maxlength='20'><div id='found-branches'></div></td> </tr> <tr> <td><label for='edit-company-phone'>Phone Number</label></td> <td><input id='edit-company-phone' class='phone-input' name='edit-company-phone' type='textbox' maxlength='20'></td> </tr> <tr> <td><label for='edit-company-email'>Email</label></td> <td><input id='edit-company-email' class='email-input' name='edit-company-email' type='textbox' maxlength='50'></td> </tr> </tbody> </table> 我希望回车符表现得像制表符一样,移动到下一个字段。 我有: $('#tbl-edit-company tbody').on('keydown', 'input, select', function(e) { if (e.keyCode == 13) { event.preventDefault(); $(this).next().focus(); } }); 我知道节点结构对于 $(this).next().focus(); 来说太复杂了;工作,但是我需要什么parent()、next()、find()组合才能工作? 我已经多次尝试过各种组合,才来这里问!! 解决此问题的一种方法是向所有 input/select 字段添加公共类。然后,使用 .index() 获取正在聚焦的类的索引,并使用 :eq() 聚焦具有相同类的下一个字段。 演示代码: $('#tbl-edit-company tbody').find('input,select').addClass('something'); //adding this class... to all input/select $('#tbl-edit-company tbody').on('keydown', 'input, select', function(e) { var index_ = $('.something').index(this) //get index of class if (e.keyCode == 13) { $('#tbl-edit-company tbody').find(`.something:eq(${index_ + 1})`).focus(); //focus on next class + 1 } }); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <table id='tbl-edit-company' class='tbl-form tbl-contact-form'> <tbody> <tr> <td><label for='edit-company-company-name'>Company Name</label></td> <td><input id='edit-company-company-name' class='contact-input' name='edit-company-company-name' type='textbox' maxlength='50' value=''></td> </tr> <tr> <td><label for='cmbo-edit-company-business-type'>Business Type</label></td> <td> <select id='cmbo-edit-company-business-type' class='contact-combo' name='cmbo-edit-company-business-type'> <option value='0'> - </option> <option value='1'>Construction</option> <option value='2'>Garage</option> <option value='3'>Financial</option> <select> </td> </tr> <tr> <td><label for='edit-company-branch-name'>Branch</label></td> <td><input id='edit-company-branch-name' class='contact-input' name='edit-company-branch-name' type='textbox' maxlength='20'> <div id='found-branches'></div> </td> </tr> <tr> <td><label for='edit-company-phone'>Phone Number</label></td> <td><input id='edit-company-phone' class='phone-input' name='edit-company-phone' type='textbox' maxlength='20'></td> </tr> <tr> <td><label for='edit-company-email'>Email</label></td> <td><input id='edit-company-email' class='email-input' name='edit-company-email' type='textbox' maxlength='50'></td> </tr> </tbody> </table>

回答 1 投票 0

在PowerShell中如何替换回车符

在 PowerShell 脚本中,我将从 SQL Server 查询读取的数据导出到制表符分隔的 .csv 文件中。我需要删除所有回车符。 - 替换“r`n”不起作用。我认为

回答 2 投票 0

AddCarriageReturn 在 NPOI 中没有按预期工作

在 c# 程序中,我试图添加 3 行,但看起来 2 行之间的差距更大 XWPFParagraph paragraphTwo = document.CreateParagraph(); paragraphTwo.Alignment = ParagraphAlignment.LEF ...

回答 0 投票 0

它不会覆盖 linux 终端上打印的最后一行

“我”做了一个在 vscode 中运行良好的进度条,但是在 linux 上它只是一遍又一遍地打印它。 (https://i.stack.imgur.com/cDlgJ.png) 我尝试了很多东西( , 系统标准输出。

回答 1 投票 0

Python有没有办法在同一列中结束每个回车? [关闭]

我正在尝试让我的文本文件在每一行的相同位置处理回车。目前它们在我需要的 246 字节长度之前或之后结束。 不匹配的长度 我试过用...

回答 2 投票 0

为什么我们需要在新行字符"/n "前加一个回车符"/r"?

在下面的代码中,HTTP协议需要两个换行符,但那里需要的是"\r"。为什么我们不能直接添加两个 \n 然后发送请求呢? import socket mysock = socket.socket(...)

回答 1 投票 0

"Headers2"

我有一个这样的文件。"Headers1"

回答 1 投票 0

") then delete the CRLF, and repeat the operation until you have only correct rows.

我的想法是,如果这一行没有4列分隔符("

回答 1 投票 0

防止将回车 "r "转换为 "n"

我在t.py里有以下代码:- import time for i in range(1,100): print(f"{i}% \r",end='') time.sleep(0.05) 它的单行计数1到99是这样的:- 所以当我执行以下代码时,我......

回答 1 投票 1

我可以在没有返回键'n'的情况下读取字符吗? (C)

我正在尝试验证用户是否输入了正确的值以及返回值。他应该输入一个介于0到100之间的偶数。我想我没错,但是现在我的问题是,用户必须......>

回答 1 投票 0

将回车符(\ r)转换为实际覆盖

问题是否有一种方法可以将回车符转换为字符串中的实际覆盖值,以便将000000000000 \ r1010转换为101000000000?上下文1.最初的目标:具有数字x(...

回答 4 投票 2

在控制台的Windows上用java打印回车符

在OS X机器上,以下行为我提供了一种跟踪循环状态的简便方法:for(int index = 0; index <100; index ++)for(int subIndex = index; subIndex <100; ...

回答 3 投票 10

““ Resolve””将字符串存储在变量中时返回

初始目标:以10为底的数字x(我想在0到255之间),我想将此数字转换为以2为底的数字,添加尾随零以得到12位长的二进制表示,生成12个不同的...

回答 3 投票 2

如何在Eclipse控制台中获得没有换行效果的回车?

如果我是System.out.print(“ something \ r”);在控制台上,我将光标移到行的开头,最后是System.out.print(“ something \ r”);之后; System.out.print(“ any \ r”);我有什么...

回答 3 投票 27

© www.soinside.com 2019 - 2024. All rights reserved.