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

learn more… | top users | synonyms (3)

1200
votes
15answers
866k views

Method like String.contains() in JavaScript

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. Update: It seems that I have another ...
905
votes
31answers
147k views

What's the difference between String and string?

In C#, what is the difference between String and string? (note the case) Example: string s = "Hello, World"; String S = "Hello, World"; Also, what are the guidelines for the use of each?
719
votes
23answers
395k views

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 ...
685
votes
9answers
51k views

Why is char[] preferred over String for passwords?

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

Why does this code print “hello world”?

I came across this piece of code, and found it rather interesting. The following print statement would print "hello world". Could anyone explain this? System.out.println(randomString(-229985452) + " ...
501
votes
19answers
179k views

Capitalize the first letter of string in JavaScript

How do I 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 ...
483
votes
7answers
154k 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"
467
votes
15answers
342k views

How do I trim a string in JavaScript?

How do I trim a string in JavaScript?
431
votes
22answers
259k 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 ...
342
votes
25answers
266k views

How do I compare strings in Java?

I've been using the == operator in my program to compare all my strings so far. However, I ran into a bug, changed one of them into .equals() instead, and it fixed the bug. Is == bad? When should it ...
306
votes
9answers
256k 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 ...
301
votes
18answers
124k views

Creating multiline strings in JavaScript

I have the following code in Ruby. I want to convert this code into JavaScript. what's the equivalent code in JS? text = <<"HERE" This Is A Multiline String HERE
296
votes
4answers
9k 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? ...
294
votes
12answers
18k views

Why does [1,2] + [3,4] = “1,23,4” in JavaScript?

I wanted to add the elements of an array into another, so I tried this simple sentence in our beloved Firebug: [1,2] + [3,4] It responded with: "1,23,4" What is going on?
293
votes
15answers
113k 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 ...
289
votes
6answers
127k 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 ...
288
votes
14answers
197k 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 ...
287
votes
16answers
164k 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 ...
282
votes
28answers
244k views

How to generate a random alpha-numeric string

I've been looking for a simple java algorithm to generate a pseudo-random alpha-numeric string. In my situation it would be used as a unique session/key identifier that would "likely" be unique over ...
264
votes
12answers
77k 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 ...
264
votes
0answers
56k views

String vs string in C# [duplicate]

Possible Duplicate: In C# what is the difference between String and string In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class ...
260
votes
26answers
163k 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 ...
255
votes
12answers
368k views

Parse String to Float or Int

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? I just want to know how to parse a float string to a float, and ...
250
votes
22answers
35k 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 ...
239
votes
13answers
215k 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 ...
232
votes
4answers
158k views

Does python have a string contains method?

I'm looking for a string.contains or string.indexof method in Python. I want to do: if not somestring.contains("blah"): continue
231
votes
4answers
52k views

How to escape brackets (curly braces) 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 ...
221
votes
4answers
126k views

Select <a> which href ends with 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">
209
votes
11answers
210k views

Is there a way to substring a string in Python?

Is there a way to substring a string in Python, to get a new string from the 3rd character to the end of the string? Maybe like myString[2:end]? EDIT: If leaving the second part means 'till the ...
194
votes
7answers
72k views

python random string generation with upper case letters and digits

I want to generate a string of size N. It should be made up of numbers and uppercase English letters such as: 6U1S75 4Z4UKK U911K4 How can I achieve this in a Pythonic way?
192
votes
2answers
67k views

Reverse a string in Python

There is no built in reverse function in Python's str object. What is the best way of implementing this? If supplying a very concise answer, please elaborate on it's efficiency. Is the str converted ...
190
votes
9answers
81k views

How does one convert a string to lowercase in Ruby?

I know this is simple, but how do you take a string and convert it to lower case, or upper case, in Ruby?
189
votes
5answers
163k views

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

How can I convert an std::string to a char* or a const char*?
184
votes
20answers
111k 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 ...
181
votes
5answers
138k views

How to trim whitespace (including tabs)?

Is there a function that will trim not only spaces for whitespace, but also tabs?
176
votes
9answers
100k 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
176
votes
16answers
84k 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 ...
174
votes
9answers
68k 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?
171
votes
5answers
166k 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 ...
166
votes
15answers
157k views

Escaping HTML strings with jQuery

Does anyone know of an easy way to escape HTML from strings in jQuery? I need to be able to pass an arbitrary string and have it properly escaped for display in an HTML page (preventing ...
164
votes
6answers
112k 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?
160
votes
7answers
130k 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".
154
votes
25answers
164k 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++?
153
votes
8answers
97k views

How do I Convert a String into an Integer in JavaScript?

How do I convert a string into an integer in JavaScript? Is it possible to do this automatically, or do I have to write a subroutine to do it manually?
151
votes
6answers
156k views

How do I split a string with any whitespace chars as delimiters?

What regex pattern would need to pass to the java.lang.String.split() method to split a string with all whitespace characters (' ', '\t', '\n', etc.) as delimiters?
147
votes
10answers
43k 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 ...
146
votes
4answers
41k views

Ruby: what does %w(array) mean?

I'm looking at the documentation for FileUtils. I'm confused by the following line: FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6' What does the %w mean? Can you point me to the ...
146
votes
8answers
4k 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 ...
145
votes
11answers
53k 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 ...
145
votes
17answers
117k 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 ...

1 2 3 4 5 814