A string is a sequence of zero or more characters. It is commonly used to represent text or a sequence of bytes.
313
votes
22answers
248k 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 ...
105
votes
17answers
107k views
Java String.equals versus ==
This code separates a string into tokens and stores them in an array of strings, and then compares a variable with the first home ... why isn't it working?
public static void main (String... ...
147
votes
25answers
160k 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++?
65
votes
8answers
29k views
What is the difference between single-quoted and double-quoted strings in PHP?
I'm not an expert in PHP programming, but I'm a little confused why I see some code in PHP with string placed in single quotes and sometimes in double quotes.
I just know in .NET, or C language, if ...
865
votes
31answers
139k 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?
280
votes
18answers
117k 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
123
votes
14answers
214k views
Split string in SQL
Using SQL Server 2005, how do I split a string so I can access item x?
For example, take the string "Hello John Smith". How can I split the string by a space and access the item at index 1 which ...
68
votes
9answers
26k views
What is the difference between char s[] and char *s in C?
In C, I can do like this:
char s[]="hello";
or
char *s ="hello";
So I wonder what is the difference? I want to know what actually happens in memory allocation during compile time and run time.
...
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 ...
1145
votes
15answers
829k 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 ...
123
votes
9answers
26k 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.)
...
433
votes
15answers
320k views
690
votes
22answers
380k 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 ...
246
votes
22answers
33k 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 ...
90
votes
9answers
16k views
What is the difference between String.Empty and “” (empty string)?
In .NET, what is the difference between String.Empty and "", and are they interchangable, or is there some underlying reference or Localization issues around equality that String.Empty will ensure are ...
34
votes
7answers
4k views
What is the purpose of the expression “new String(…)” in Java?
While looking at online code samples, I have sometimes come across an assignment of a String constant to a String object via the use of the new operator.
For example:
String s;
...
s = new ...
255
votes
12answers
75k 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 ...
293
votes
9answers
246k 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 ...
36
votes
10answers
35k views
Evaluating a math expression given in string form
I am trying to write a Java routine to evaluate simple math expressions from Strings. Example strings:
"5+3" or "10-40" or "10*3"
I want to avoid a lot of if-then-else statements. How can I do this?
...
121
votes
13answers
33k views
StringBuilder vs String concatenation in toString() in Java
Given the 2 toString() implementations below, which is prefered
public String toString(){
return "{a:"+ a + ", b:" + b + ", c: " + c +"}";
}
or
public String toString(){
StringBuilder sb = ...
25
votes
5answers
12k views
Questions about Java's String pool
Consider this code:
String first = "abc";
String second = new String ("abc");
When using the new keyword, Java will create the abc String again right?
Will this be stored on the regular heap or ...
412
votes
21answers
246k 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 ...
183
votes
5answers
157k views
Convert std::string to const char* or char*
How can I convert an std::string to a char* or a const char*?
122
votes
17answers
105k views
Strip HTML from Text JavaScript
Is there an easy way to take a string of html in JavaScript and strip out the html?
22
votes
3answers
13k views
How can I get a hex dump of a string in PHP?
I'm investigating encodings in PHP5. Is there some way to get a raw hex dump of a string? i.e. a hex representation of each of the bytes (not characters) in a string?
59
votes
8answers
32k views
Highlight the difference between two strings in PHP
What is the easiest way to highlight the difference between two strings in PHP?
I'm thinking along the lines of the Stack Overflow edit history page, where new text is in green and removed text is in ...
47
votes
8answers
5k views
What's the @ in front of a string in C#?
This is a .NET question for C# (or possibly VB.net), but I am trying to figure out what's the difference between the following declarations:
string hello = "hello";
vs.
string hello_alias = ...
665
votes
9answers
49k 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 ...
41
votes
9answers
33k views
Java: splitting a comma-separated string but ignoring commas in quotes
I have a string vaguely like this:
foo,bar,c;qual="baz,blurb",d;junk="quux,syzygy"
that I want to split by commas -- but I need to ignore commas in quotes. How can I do this? Seems like a regexp ...
165
votes
14answers
152k 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 ...
57
votes
15answers
53k views
Capitalize First Char of Each Word in a String Java
Is there a function built into Java that capitalizes the first character of each word in a String, and does not affect the others?
Examples:
jon skeet -> Jon Skeet
miles o'Brien -> Miles O'Brien (B ...
249
votes
26answers
157k 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 ...
143
votes
10answers
41k 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 ...
485
votes
19answers
171k 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
...
121
votes
4answers
48k views
Read whole ASCII file into C++ std::string
I need to read a whole file into memory and place it in a C++ std::string.
If I were to read it into a char, the answer would be very simple:
std::ifstream t;
int length;
t.open("file.txt"); // ...
80
votes
21answers
50k views
Parse usable Street Address, City, State, Zip from a string
Problem: I have an address field from an Access database which has been converted to Sql Server 2005. This field has everything all in one field. I need to parse out the individual sections of the ...
86
votes
8answers
50k views
Best way to strip punctuation from a string in Python
It seems like there should be a simpler way than:
import string
s = "string. With. Punctuation?" # Sample string
out = s.translate(string.maketrans("",""), string.punctuation)
Is there?
94
votes
18answers
146k views
How can I pad a String in Java?
Is there some easy way to pad Strings in Java?
Seems like something that should be in some StringUtil-like API, but I can't find anything that does this.
276
votes
28answers
236k 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 ...
144
votes
17answers
114k 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 ...
58
votes
13answers
50k views
How to Truncate a string in PHP to the word closest to a certain number of characters?
I have a code snippet written in PHP that pulls a block of text from a database and sends it out to a widget on a webpage. The original block of text can be a lengthy article or a short sentence or ...
96
votes
8answers
42k views
In C#, why is String a reference type that behaves like a value type?
A String is a reference type even though it has most of the characteristics of a value type such as being immutable and having == overloaded to compare the text rather than making sure they reference ...
6
votes
3answers
2k views
Truncate a multibyte String to n chars
I am trying to get this method in a String Filter working:
public function truncate($string, $chars = 50, $terminator = ' …');
I'd expect this
$in = ...
100
votes
9answers
36k views
Why does Java's hashCode() in String use 31 as a multiplier?
In Java, the hash code for a String object is computed as
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
using int arithmetic, where s[i] is the ith character of the string, n is the length of the ...
52
votes
24answers
66k views
Generate list of all possible permutations of a string
How would I go about generating a list of all possible permutations of a string between x and y characters in length, containing a variable list of characters.
Any language would work, but it should ...
174
votes
19answers
107k 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 ...
48
votes
20answers
55k views
How do I trim leading/trailing whitespace in a standard way?
Is there a clean, preferably standard method of trimming leading and trailing whitespace from a string in C? I'd roll my own, but I would think this is a common problem with an equally common ...
57
votes
7answers
86k views
How do I split this string with JavaScript?
I have this string
'john smith~123 Street~Apt 4~New York~NY~12345'
Using JavaScript, what is the fastest way to parse this into
var name = "john smith";
var street= "123 Street";
//etc...
53
votes
13answers
17k views
Why .NET String is immutable?
As we all know, String is immutable. What are the reasons for String being immutable and the introduction of StringBuilder class as mutable?
10
votes
2answers
4k views
URL Friendly Username in PHP?
On my PHP site, currently users login with an email address and a password. I would like to add a username as well, this username they g\set will be unique and they cannot change it. I am wondering ...