Questions tagged «string»

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

11
如何在Java中将对象数组转换为字符串数组
我使用以下代码将Object数组转换为String数组: Object Object_Array[]=new Object[100]; // ... get values in the Object_Array String String_Array[]=new String[Object_Array.length]; for (int i=0;i<String_Array.length;i++) String_Array[i]=Object_Array[i].toString(); 但我想知道是否还有另一种方法可以做到,例如: String_Array=(String[])Object_Array; 但这会导致运行时错误: Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.lang.String; 正确的做法是什么?
244 java  arrays  string 


15
如何将布尔值转换为字符串
我有一个布尔变量,我想将其转换为字符串: $res = true; 我需要转换后的值的格式为:"true" "false",而不是"0" "1" $converted_res = "true"; $converted_res = "false"; 我试过了: $converted_res = string($res); $converted_res = String($res); 但是它告诉我,string并且String不是公认的功能。 如何将此布尔值转换为PHP "true"或"false"PHP 格式的字符串?
242 php  string 

11
在String.Split操作中指定空格的最佳方法
我正在基于空白拆分字符串,如下所示: string myStr = "The quick brown fox jumps over the lazy dog"; char[] whitespace = new char[] { ' ', '\t' }; string[] ssizes = myStr.Split(whitespace); 在我想要执行此操作的代码中的任何地方定义char []数组,这很麻烦。有没有更有效的方法不需要创建字符数组(如果在不同位置复制,则容易出错)?
242 c#  string 

21
如何检查C ++ std :: string是否以某个特定字符串开头,并将子字符串转换为int?
如何在C ++中实现以下(Python伪代码)? if argv[1].startswith('--foo='): foo_value = int(argv[1][len('--foo='):]) (例如,如果argv[1]is --foo=98,则foo_valueis 98。) 更新:我不愿讨论Boost,因为我只是想对一个简单的小型命令行工具进行很小的更改(我宁愿不必学习如何链接和使用Boost来进行较小的调整更改)。




7
.NET字符串的最大可能长度是多少?
.NET中可以创建的最长字符串是什么?String据我所知,该类的文档对此问题保持沉默,因此权威的答案可能需要一些内部知识。在64位系统上最大的变化是吗? [这是出于好奇而非实际用途的要求-我无意创建任何使用巨大字符串的代码!]
239 .net  string  limits 

12
一个Unicode字符占用多少字节?
我对编码有点困惑。据我所知,旧的ASCII字符每个字符占用一个字节。Unicode字符需要多少个字节? 我假设一个Unicode字符可以包含任何语言的所有可能字符-我正确吗?那么每个字符需要多少个字节? UTF-7,UTF-6,UTF-16等是什么意思?它们是Unicode的不同版本吗? 我阅读了有关Unicode的Wikipedia文章,但对我来说却很难。我期待看到一个简单的答案。





13
从fgets()输入中删除结尾的换行符
我试图从用户那里获取一些数据,并将其发送到gcc中的另一个函数。代码是这样的。 printf("Enter your Name: "); if (!(fgets(Name, sizeof Name, stdin) != NULL)) { fprintf(stderr, "Error reading Name.\n"); exit(1); } 但是,我发现它最后有一个换行符\n。因此,如果我输入,John它将最终发送出去John\n。我该如何删除\n并发送正确的字符串。
235 c  string  gcc  newline  fgets 

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.