A String is a sequence of zero or more characters. It is commonly used to represent text.

learn more… | top users | synonyms (3)

306
votes
9answers
293k views

JavaScript: string contains

How can I check if one string contains another substring in JavaScript? Usually I would expect a String.contains() method, but there doesn't seem to be one. Edit: thanks for all the answers :) ...
275
votes
7answers
20k views

Why is char[] preferred over string for passwords?

In Swing, the password field has a getPassword() (returns char[]) method instead of usual getText() (returns String) method. Similarly, I have come across a suggestion not to use Strings to handle ...
257
votes
14answers
51k views

String vs string in C#

In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class right? In that case, it would be the same to use either while coding from the semantic ...
203
votes
13answers
137k views

In Java, how do I read/convert an InputStream to a String?

If you have java.io.InputStream object, how should you process that object and produce a String? Suppose I have an InputStream that contains text data, and I want to convert this to a String (for ...
201
votes
3answers
6k views

If strings are immutable in .NET, then why does Substring take O(n) time?

Given that strings are immutable in .NET, I'm wondering why they have been designed such that string.Substring() takes O(substring.Length) time, instead of O(1)? i.e. what were the tradeoffs, if any? ...
163
votes
15answers
28k views

In C# what is the difference between String and string

In C# what is the difference between String and string? (note the case) Also, what are the guidelines for the use of each?
133
votes
21answers
13k views

In C#, should I use string.Empty or String.Empty or “”?

In C#, I want to initialize a string value with an empty string? How should I do this? What is the right way, and why? string willi = string.Empty; or string willi = String.Empty; or string ...
131
votes
6answers
47k views

Convert JavaScript String to be all lower case?

How can I convert a JavaScript string value to be in all lower case letters? Example: "Your Name" to "your name".
129
votes
13answers
57k views

Capitalize the first letter of string in JavaScript

I want to capitalize the first character of a string, but not change the case of any of the other letters. For example: this is a test -> This is a test the Eiffel Tower -> The Eiffel Tower ...
124
votes
17answers
96k views

.NET String to byte Array C#

How do I convert a string to a byte array in .NET (C#)? Update: Also please explain why encoding should be taken into consideration. Can't I simply get what bytes the string has been stored in? Why ...
121
votes
11answers
38k views

std::wstring VS std::string

I am not able to understand the differences between std::string and std::wstring. I know wstring supports wide characters such as Unicode characters. I have got the following questions: When should ...
110
votes
7answers
2k views

Why does appending “” to a String save memory?

I used a variable with a lot of data in it, say String data. I wanted to use a small part of this string in the following way: this.smallpart = data.substring(12,18); After some hours of debugging ...
98
votes
9answers
87k views

Switch Statement with Strings in Java

Why can't I switch on a String in Java? Is this functionality going to be put into a later Java version? Can someone point me to an article, or themselves explain why I can't do this, as in, the ...
94
votes
13answers
69k views

Extract filename and extension in bash

I want to get the filename (without extension) and the extension separately. The best solution I found so far is: NAME=`echo "$FILE" | cut -d'.' -f1` EXTENSION=`echo "$FILE" | cut -d'.' -f2` This ...
92
votes
17answers
57k views

C# String enums

I have the following enumeration: public enum AuthenticationMethod { FORMS = 1, WINDOWSAUTHENTICATION = 2, SINGLESIGNON = 3 } The problem however is that I need the word "FORMS" when I ...
90
votes
8answers
4k views

How is null + true a string?

Since true is not a string type, how is null + true a string ? string s = true; //Cannot implicitly convert type 'bool' to 'string' bool b = null + true; //Cannot implicitly convert type 'string' ...
87
votes
25answers
3k views

Plurality in user messages

Many times, when generating messages to show to the user, the message will contain a number of something that I want to inform the customer about. I'll give an example: The customer has selected a ...
86
votes
10answers
111k views

Python - Parse String to Float or Int

This should be simple - In python, how can I parse a numeric string like "545.2222" to its corresponding float value, 542.2222 or "31" to an integer, 31? EDIT: I just wanted to know how to parse a ...
86
votes
3answers
21k views

How to escape brackets in a format string in .Net

How can brackets be escaped in a C# format string so, something like : String val = "1,2,3" String.Format(" foo {{0}}", val); doesn't throw a parse exception but actually outputs the string " foo ...
84
votes
21answers
57k views

Case insensitive string comparison in C++

What is the best way of doing case insensitive string comparison in C++ with out transforming a string to all upper or lower case? Also, what ever methods you present, are they Unicode friendly? Are ...
81
votes
13answers
42k views

endsWith in javascript

How can I check if a string ends with a particular character in javascript? example I have a string say var str = "mystring#"; I want to know if that string str is ending with "#". How can I check ...
80
votes
19answers
23k views

C#: Test if string is a guid without throwing exceptions?

i want to try to convert a string to a Guid, but i don't want to rely on catching exceptions ( for performance reasons - exceptions are expensive for usability reasons - the debugger pops up for ...
77
votes
11answers
18k views

Good Python modules for fuzzy string comparison?

I'm looking for a Python module that can do simple fuzzy string comparisons. Specifically, I'd like a percentage of how similar the strings are. I know this is potentially subjective so I was hoping ...
77
votes
17answers
15k views

Why can't strings be mutable in Java and .NET?

Why is it that they decided to make string immutable in Java and .NET (and some other languages)? Why didn't they make it mutable?
77
votes
22answers
81k views

How do I tokenize a string in C++?

Java has a convenient split method: String str = "The quick brown fox"; String[] results = str.split(" "); Is there an easy way to do this in C++?
74
votes
5answers
55k views

Convert hex string to int in Python

How do I convert a hex string to an int in Python? I may have it as "0xffff" or just "ffff".
73
votes
16answers
28k views

Creating a comma separated list from IList<string> or IEnumerable<string>

What is the cleanest way to create a comma-separated list of string values from an IList<string> or IEnumerable<string>? String.Join(...) operates on a string[] so can be cumbersome to ...
72
votes
12answers
85k views

String contains in bash

Using bash, I have a string: string=`echo My string` How can I test if it contains another string? if [ $string ?? 'foo' ] then; echo "It's there!"; fi; Where ?? is my unknown operator. Do I ...
70
votes
2answers
49k views

jQuery: Select <a> which href contains some string

Is it possible using jQuery to select all <a> links which href ends with "ABC" for example, if i want to find this link <a href="http://server/page.aspx?id=ABC"> Thanks in advance
70
votes
6answers
78k views

Get an OutputStream into a String

What's the best way to pipe the output from an java.io.OutputStream to a String in Java? Say I have the method: writeToStream(Object o, OutputStream out) Which writes certain data from the ...
68
votes
6answers
46k views

How do you get a string from a MemoryStream?

If I am given a MemoryStream that I know has been populated with a String, how do I get a String back out?
67
votes
5answers
58k views

Convert std::string to const char* or char*

How can I convert an std::string to a char* or a const char*?
66
votes
4answers
17k views

CharSequence VS String in Java?

Programming in Android, most of the text values are expected in CharSequence. Why is that ? What is the benefit and what are the main impacts of using CharSequence over String ? What are the main ...
64
votes
11answers
66k views

Replace Line Breaks in a String C#

How can I replace Line Breaks within a string in C#?
62
votes
7answers
34k views

converting string to lower case in bash shell scripting

Is there a way in bash shell scripting so that I can convert a string into lower case string. For example, if $a = "Hi all" I want to convert it to $a = "hi all" Thanks a lot for your help
62
votes
2answers
37k views

How to trim whitespace (including tabs)?

I've come to the conclusion that python has a function for just about everything I could ask for. It's just a matter of actually finding these functions. Is there a function that will trim not only ...
62
votes
14answers
47k views

PHP startsWith() and endsWith() functions

I need two functions that would take a string and return if it starts with the specified character/string or ends with it. For example: $str='|apples}'; echo startsWith($str,'|'); //Returns true ...
62
votes
6answers
29k views

How can I String.Format a TimeSpan object with a custom format in .NET?

What is the recommended way of formatting TimeSpan objects into a string with a custom format?
61
votes
8answers
4k views

Are string.Equals() and == operator really same?

Are they really same? Today, I ran into this problem. Here is the dump from the Immediate Window: ?s "Category" ?tvi.Header "Category" ?s == tvi.Header false ?s.Equals(tvi.Header) true ?s == ...
61
votes
4answers
57k views

Trimming a string in Python

I need to write a function in python that gets a string- If the first or last characters in the string are spaces, then they should be removed (both). If not than nothing should be done. " Hello " ...
61
votes
11answers
43k views

How would you count occurences of a string within a string (C#)?

I am doing something where I realised I wanted to count how many /s I could find in a string, and then it struck me, that there were about several ways to do it, but couldn't decide on what the best ...
60
votes
15answers
77k views

How to get rid of `deprecated conversion from string constant to ‘char*’` warnings in GCC?

So I'm working on an exceedingly large codebase, and recently upgraded to gcc 4.3, which now triggers this warning: warning: deprecated conversion from string constant to ‘char*’ Obviously, the ...
59
votes
6answers
23k views

Python: Nicest way to pad zeroes to string

What is the nicest/shortest way to pad a string with zeroes to the left, so the string length has a specific length?
59
votes
9answers
12k views

How do I remove diacritics (accents) from a string in .NET?

I'm trying to convert some strings that are in French Canadian and basically, I'd like to be able to take out the French accent marks in the letters while keeping the letter. (E.g. convert é to e.) ...
59
votes
6answers
31k views

Ruby - Convert File to String

I need an easy way to take a tar file and convert it into a string (and vice versa). Is there a way to do this in Ruby? My best attempt was this: file = File.open("path-to-file.tar.gz") contents = "" ...
58
votes
9answers
20k views

Best way to repeat a character in C#

What it's the best way to generate a string of \t's in C# I am learning C# and experimenting with different ways of saying the same thing. Tabs(uint t) is a function that returns a string with t ...
57
votes
3answers
28k views

String contains string in objective-c

How can I check if a string (NSString) contains another smaller string? I was hoping for something like: NSString *string = @"hello bla bla"; NSLog(@"%d",[string containsSubstring:@"hello"]); But ...
55
votes
13answers
177k views

PHP ToString() equivalent

How do I convert the value of a PHP variable to string? I was looking for something better than concatenating with an empty string: $myText = $myVar . ''; like the ToString() method in Java or ...
54
votes
9answers
3k views

Why is “a” != “a” in C?

void main() { if("a" == "a") printf("Yes, equal"); else printf("No, not equal"); } Why is the output No, not equal?
53
votes
25answers
42k views

Java multiline string

Coming from Perl, I sure am missing the "here-document" means of creating a multi-line string in source code: $string = <<"EOF" # create a three line string text text text EOF In Java I have ...

1 2 3 4 5 398