Questions tagged «string»

字符串是有限的符号序列,通常用于文本,尽管有时用于任意数据。

6
如何在Python中将浮点数格式化为固定宽度
如何按照以下要求将浮点数格式化为固定宽度: 如果n <1,则前导零 添加尾随的十进制零以填充固定宽度 截断超出固定宽度的十进制数字 对齐所有小数点 例如: % formatter something like '{:06}' numbers = [23.23, 0.123334987, 1, 4.223, 9887.2] for number in numbers: print formatter.format(number) 输出会像 23.2300 0.1233 1.0000 4.2230 9887.2000

19
获取字符串的前n个字符
如何在PHP中获取字符串的前n个字符?将字符串修剪为特定数量的字符并在需要时附加“ ...”的最快方法是什么?
320 php  string 

12
使用Sed替换包含字符串的整行
我有一个文本文件,其中有一个特定的行,例如 sometext sometext sometext TEXT_TO_BE_REPLACED sometext sometext sometext 我需要将上面的整行替换为 This line is removed by the admin. 搜索关键字是 TEXT_TO_BE_REPLACED 我需要为此编写一个shell脚本。我该如何使用sed呢?
319 string  shell  sed 

29
从字符串中查找并提取数字
我需要查找并提取字符串中包含的数字。 例如,从这些字符串中: string test = "1 test" string test1 = " 1 test" string test2 = "test 99" 我怎样才能做到这一点?
319 c#  .net  regex  string 


20
如何将字符串转换为布尔PHP
如何将字符串转换为boolean? $string = 'false'; $test_mode_mail = settype($string, 'boolean'); var_dump($test_mode_mail); if($test_mode_mail) echo 'test mode is on.'; 它返回 布尔值true 但应该如此boolean false。
318 php  string  casting  boolean 

30
用Java构建带分隔符的字符串的最佳方法是什么?
在Java应用程序中工作时,最近我需要组装一个用逗号分隔的值列表,以传递到另一个Web服务,而无需事先知道会有多少个元素。我能想到的最好的办法是这样的: public String appendWithDelimiter( String original, String addition, String delimiter ) { if ( original.equals( "" ) ) { return addition; } else { return original + delimiter + addition; } } String parameterString = ""; if ( condition ) parameterString = appendWithDelimiter( parameterString, "elementName", "," ); if ( anotherCondition …
317 java  string  algorithm 

14
转义sed替换模式的字符串
在我的bash脚本中,我有一个外部(从用户那里收到的)字符串,我应该在sed模式中使用它。 REPLACE="<funny characters here>" sed "s/KEYWORD/$REPLACE/g" 我如何转义$REPLACE字符串,以便将其安全地接受sed为文字替换? 注:本KEYWORD是一个愚蠢的字符串没有匹配等,这是不是由用户提供。
317 string  sed  escaping 

7
如何在string.replace中输入正则表达式?
我需要一些帮助来声明正则表达式。我的输入如下: this is a paragraph with<[1> in between</[1> and then there are cases ... where the<[99> number ranges from 1-100</[99>. and there are many other lines in the txt files with<[3> such tags </[3> 所需的输出是: this is a paragraph with in between and then there are cases ... where the …
317 python  regex  string  replace 

12
从字符串中删除所有出现的char
我可以用这个: String str = "TextX Xto modifyX"; str = str.replace('X','');//that does not work because there is no such character '' 有没有办法X从Java中的字符串中删除所有出现的字符? 我试过了,这不是我想要的: str.replace('X',' '); //replace with space
311 java  string  character 


10
将对象序列化为字符串
我有以下方法将对象保存到文件: // Save an object out to the disk public static void SerializeObject<T>(this T toSerialize, String filename) { XmlSerializer xmlSerializer = new XmlSerializer(toSerialize.GetType()); TextWriter textWriter = new StreamWriter(filename); xmlSerializer.Serialize(textWriter, toSerialize); textWriter.Close(); } 我承认我没有编写它(我仅将其转换为带有类型参数的扩展方法)。 现在,我需要它来将xml作为字符串返回给我(而不是将其保存到文件中)。我正在研究它,但尚未弄清楚。 我认为这对于熟悉这些对象的人可能真的很容易。如果没有,我最终会解决。


15
是否有不区分大小写的替代string.Replace的字符串?
我需要搜索一个字符串,%FirstName%并%PolicyAmount%用从数据库中提取的值替换所有出现的和。问题是FirstName的大小写不同。那使我无法使用该String.Replace()方法。我看过有关该主题的网页 Regex.Replace(strInput, strToken, strReplaceWith, RegexOptions.IgnoreCase); 但是由于某种原因,当我尝试用替换%PolicyAmount%时$0,替换从未发生。我认为它与正则表达式中的保留字符美元符号有关。 我是否可以使用另一种方法,而不涉及对输入进行处理以处理正则表达式特殊字符?
306 c#  .net  string  .net-2.0  replace 

9
Swift中Int的前导零
我想将IntSwift中的a 转换为String前导零的a。例如,考虑以下代码: for myInt in 1 ... 3 { print("\(myInt)") } 当前的结果是: 1 2 3 但我希望它是: 01 02 03 Swift标准库中是否有一种干净的方法可以做到这一点?

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.