Questions tagged «multiline»

跨越多行的文本被视为“多行”。有关包装,间距,技术和最佳做法的担忧。

7
如何在Python自己的调试器(PDB)中执行多行语句
因此,我正在运行一个Python脚本,在其中编写以下代码来调用Python的调试器PDB: import ipdb; ipdb.set_trace() (iPython的PDB版本,尽管如此,我认为这没有什么区别;我仅将其用于彩色输出)。 现在,当我进入调试器时,我想执行多行语句,例如if子句或for循环,但是只要输入 if condition: 然后按回车键,我得到错误信息 *** SyntaxError: invalid syntax (<stdin>, line 1) 一个人如何在PDB中执行多行语句?如果不可能,是否有办法解决仍然执行if子句或for循环的问题?

18
Android中的多行TextView?
我在下面喜欢 xml <TableRow> <TextView android:id="@+id/address1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="left" android:maxLines="4" android:singleLine="false" android:text="Johar Mor, Gulistan-e-Johar, Karachi" > </TextView> </TableRow> 它不适用于multiline,而我正在使用TableLayout... 那我在这里做什么错?


5
在R脚本中将代码拆分为多行
我想将R脚本中的一行分成多行(因为它太长了)。我怎么做? 具体来说,我有一行 setwd('~/a/very/long/path/here/that/goes/beyond/80/characters/and/then/some/more') 是否可以将长路径分成多行?我试过了 setwd('~/a/very/long/path/here/that/goes/beyond/80/characters/and/ then/some/more') return在第一行的末尾带有密钥;但这不起作用。 谢谢。
137 r  multiline 

9
如何在node.js中执行多行字符串?
随着node.js的兴起,JavaScript中越来越需要多行字符串。 即使在浏览器中不起作用,在Node.JS中是否有一种特殊的方法可以做到这一点? 是否有我可以支持的计划或至少有功能要求? 我已经知道您可以\n\在每一行的末尾使用,这不是我想要的。

5
JSON值可以包含多行字符串吗
我正在编写一个Java文件可以读取的JSON文件。片段如下... { "testCases" : { "case.1" : { "scenario" : "this the case 1.", "result" : "this is a very long line which is not easily readble. so i would like to write it in multiple lines. but, i do NOT require any new lines in the output. I need …
114 json  multiline 

3
Groovy多行字符串有什么问题?
Groovy脚本引发错误: def a = "test" + "test" + "test" 错误: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] 尽管此脚本可以正常工作: def a = new String( "test" + "test" + "test" ) 为什么?
105 string  groovy  multiline 

6
正则表达式匹配多行文本块
与跨多行的文本进行匹配时,让Python正则表达式无法正常工作有点麻烦。示例文本为(“ \ n”是换行符) some Varying TEXT\n \n DSJFKDAFJKDAFJDSAKFJADSFLKDLAFKDSAF\n [more of the above, ending with a newline]\n [yep, there is a variable number of lines here]\n \n (repeat the above a few hundred times). 我想捕获两件事:“ some_Varying_TEXT”部分,以及一次捕获中位于其下方两行的所有大写文本行(我以后可以去除换行符)。我尝试了几种方法: re.compile(r"^>(\w+)$$([.$]+)^$", re.MULTILINE) # try to capture both parts re.compile(r"(^[^>][\w\s]+)$", re.MULTILINE|re.DOTALL) # just textlines 并有很多变化,没有运气。最后一个似乎与文本行一一对应,这不是我真正想要的。我可以抓住第一部分,没问题,但是我似乎无法抓住4-5行的大写文本。我希望match.group(1)是some_Varying_Text,而group(2)是line1 + …
105 python  regex  multiline 


7
如何使用内联变量创建多行Python字符串?
我正在寻找一种在多行Python字符串中使用变量的干净方法。假设我想执行以下操作: string1 = go string2 = now string3 = great """ I will $string1 there I will go $string2 $string3 """ 我正在寻找是否有与$Perl中类似的东西来指示Python语法中的变量。 如果不是-用变量创建多行字符串的最干净方法是什么?

9
在Visual Studio中进行多行查找和替换
能做到吗 我们正在使用VS2005,VS2008和VS2010。 我不是说正则表达式-有其位置-而是纯文本查找和替换。我知道我们可以使用\ n标签使用正则表达式来做到这一点,但不希望被正则表达式转义字符弄乱,再加上可读性问题。 如果无法做到,人们会使用什么简单而又简单(免费)的选择?那不涉及敲响我们自己的宏。

19
指定多行文本框的最大长度
我正在尝试使用asp: <asp:TextBox ID="txtInput" runat="server" TextMode="MultiLine"></asp:TextBox> 我想要一种指定maxlength属性的方法,但是显然没有可能multiline textbox。我一直在尝试为onkeypress事件使用一些JavaScript : onkeypress="return textboxMultilineMaxNumber(this,maxlength)" function textboxMultilineMaxNumber(txt, maxLen) { try { if (txt.value.length > (maxLen - 1)) return false; } catch (e) { } return true; } 尽管此JavaScript函数正常工作,但问题在于,在编写字符后,不允许您删除和替换其中的任何字符,这是不希望有的行为。 您是否知道我可以在上述代码中进行哪些更改以避免这种情况或其他任何解决方法?

7
如何在Android的TextView中将两行文本居中?
我想让它看起来像这样: | two | | lines | 这是当前的布局,根本无法使用。 <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="two\nlines" android:layout_gravity="center_vertical" android:layout_centerInParent="true"/> </RelativeLayout> 任何的想法?谢谢!

3
多行C#内插字符串文字
C#6通过以下语法为内插字符串文字带来了编译器支持: var person = new { Name = "Bob" }; string s = $"Hello, {person.Name}."; 这对于短字符串来说非常有用,但是如果要生成更长的字符串,必须在一行上指定它吗? 使用其他类型的字符串,您可以: var multi1 = string.Format(@"Height: {0} Width: {1} Background: {2}", height, width, background); 要么: var multi2 = string.Format( "Height: {1}{0}" + "Width: {2}{0}" + "Background: {3}", Environment.NewLine, height, width, background); 如果没有一行内容,我无法找到一种通过字符串插值实现此目标的方法: var multi3 = …

6
如何删除Python三引号多行字符串的额外缩进?
我有一个python编辑器,用户在其中输入脚本或代码,然后将其放入幕后的主要方法中,同时每行缩进。问题是,如果用户具有多行字符串,则通过在每个空格中插入制表符,对整个脚本进行的缩进会影响字符串。问题脚本非常简单,例如: """foo bar foo2""" 因此,在main方法中,它看起来像: def main(): """foo bar foo2""" 并且该字符串现在在每一行的开头都有一个额外的制表符。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.