A string is a sequence of zero or more characters. It is commonly used to represent text or a sequence of bytes.
-2
votes
2answers
110 views
Concatenation of LPWSTR strings
In Visual C++, I have a
LPWSTR mystring;
which is already defined somewhere else in the code.
I want to create a new LPWSTR containing:
"hello " + mystring + " blablabla" (i.e. a ...
659
votes
9answers
88k 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) + " ...
1
vote
6answers
134 views
Remove certain part of string in PHP [duplicate]
I've already seen a bunch of questions on this exact subject, but none seem to solve my problem. I want to create a function that will remove everything from a website address, except for the domain ...
2
votes
3answers
174 views
find frequency of every word
There is a question asked to me in the interview, but I am not able to answer that.
Question is :
You are given a directed graph in which every node is a character and you are also given a array of ...
2
votes
1answer
911 views
Word Array to String
how to do this in Javascript or Jquery?
Please suggest in 2 steps:
1.- Word Array to Single Byte Array.
2.- Byte Array to String.
Maybe this can help:
function hex2a(hex) {
var str = '';
...
0
votes
3answers
245 views
How to find the location of a string in a text file
I'm trying to figure out how to find a certain string and display how many lines down it is in a text file.
For example let's saying I'm trying to find the string "I'm a string" in a text file then ...
0
votes
8answers
818 views
Add … if string is too long PHP
I have a description field in my MySQL database, and I access the database on two different pages, one page I display the whole field, but on the other, I just want to display maybe the first 50 ...
105
votes
10answers
5k views
Why is this valid C# code?
This is valid C# code
var bob = "abc" + null + null + null + "123"; // abc123
This is not valid C# code
var wtf = null.ToString(); // compiler error
Why is the first statement valid?
14
votes
6answers
5k views
pythonic way to create a long multi-line string
I have a very long query. I would like to split it in several lines in python. A way to do it in javascript would be using several sentences and joining them with a + operator (i know, maybe it's not ...
3
votes
4answers
205 views
Pattern Matching for URL classification
As a part of a project, me and a few others are currently working on a URL classifier. What we are trying to implement is actually quite simple : we simply look at the URL and find relevant keywords ...
6
votes
3answers
269 views
Is there a Regex Delete in Ruby?
All of my string delete's with regex use gsub, is there a shorter way?
string.gsub(/\A.*\//,'')
3
votes
4answers
10k views
Split string with delimiters in C
how to write a function to split and return an array for string with delimiters in C Language
char* str = "JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC";
str_split(str,',');
29
votes
6answers
15k views
Javascript indexOf case insensitive
I have the following:
if (referrer.indexOf("Ral") == -1) { ...
What I like to do is to make Ral case insensitive,
so that it can be RAl, rAl, etc. and still do the above code. Is there a way to ...
658
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 ...
19
votes
3answers
7k views
0
votes
3answers
435 views
If there is string.Empty why there is not char.Empty? [duplicate]
Possible Duplicate:
Why is there no Char.Empty like String.Empty?
I want to pass an empty char as a method parameter and I was wondering why I cannot say
char.Empty
while C# allows me ...
6
votes
2answers
4k views
PHP code to remove everything but numbers
I'm trying to remove everything from a string but just numbers (0-9).
I thought this would work..
echo preg_replace("[^0-9]","",'604-619-5135');
But it echos "604-619-5135". What am I missing???
...
18
votes
1answer
3k views
Scala String vs java.lang.String - type inference
In the REPL, I define a function. Note the return type.
scala> def next(i: List[String]) = i.map {"0" + _} ::: i.reverse.map {"1" + _}
next: (i: List[String])List[java.lang.String]
And if I ...
15
votes
4answers
4k views
What does the 'b' character do in front of a string literal?
Apparently, the following is valid syntax...
my_string = b'The string'
I would like to know...
What does this b character infront of the string mean?
What are the effects of using it?
What are ...
0
votes
4answers
9k views
Convert a String to binary sequence in C# [duplicate]
Possible Duplicate:
How do you convert a string to ascii to binary in C#?
How to convert string such as "Hello" to Binary sequence as 1011010 ?
5
votes
1answer
2k views
How to correctly sort string with number inside? [duplicate]
Possible Duplicate:
Does Python have a built in function for string natural sort?
I have a list of strings containing numbers and I cannot find a good way to sort them.
For example I get ...
5
votes
5answers
22k views
Remove characters from a String in Java
I am trying to remove the .xml part of a file name with the following code:
String id = fileR.getName();
id.replace(".xml", "");
idList.add(id);
The problem is that it ...
5
votes
3answers
9k views
Xcode: directory file for simulator Iphone
i want to write a string in a file "file.txt": this file in my project (for Iphone) is inside Resources; I try to write a string in this file but it don't work, I show my code.
NSArray *paths = ...
129
votes
10answers
274k views
How to convert string to int in Java?
How does one convert a string to int in Java?
I have a string which contains only numbers (1-4 numbers to be specific), and I want to return the number which it is represents.
For example, string= ...
3
votes
8answers
20k views
Convert String into a Class Object in java
I am storing a class object into a string using toString() method. Now, I want to convert the string into that class object.
How to do that? Please help me with source code.
Thanks in advance.
18
votes
4answers
16k views
Remove substring from the string
I am just wondering if there is any method to remove string from another string?
Something like this:
class String
def remove(s)
self[s.length, self.length - s.length]
end
end
6
votes
7answers
2k views
Splitting string into groups
I'm trying to 'group' a string into segments, I guess this example would explain it more succintly
scala> val str: String = "aaaabbcddeeeeeeffg"
... (do something)
res0: ...
22
votes
3answers
15k views
How do I check if a given Python string is a substring of another one?
I have two strings and I would like to check whether the first is a substring of the other. Does Python have such a built-in functionality?
3
votes
5answers
16k views
how to extract a substring from inside a string in Python?
Lets say I have a string 'gfgfdAAA1234ZZZuijjk'
I want to extract just the '1234' part.
I only know what will be the few characters directly before (AAA), and after (ZZZ) the part I am interested in ...
1
vote
5answers
646 views
String.Empty or null: what is better to return for “Error” field from service?
We all know (more or less) about difference between String.Empty and null. I still didn't decided what is better for me in "usual" development (I mean development of server side part of ASP.NET ...
1
vote
1answer
4k views
c++ string comparison
If I have two pieces of character data, what is the best way to compare them (test for equality with ==)? That is, which type is best for this comparison? A const char*, a string?
Thanks very much
4
votes
4answers
7k views
EditText validation with TextWatcher
I have a Dialog with a EditText and a button. This EditText will name the database table I will create so its of the utmost importance it is validated. So i would like to pose 2 questions:
1) This is ...
17
votes
3answers
16k views
Extract substring from string ruby
How can i extract a substring from within a string in ruby.
Example :
String1 = "<name> <substring>"
I want to extract "substring" from String1. Basically strings within the last ...
2
votes
4answers
8k views
Replace a empty space with “ ” using Jquery
I am looking around on the web but I am not finding anything useful. :(
I am having a problem that I don't understand. I am sure that I am doing something wrong, but I don't know well the syntax of ...
6
votes
3answers
12k views
how to find string length using strlen in objective c
i have a string strored in str variable i want to find string length which is available in str variable
i hav tried with strlen(str); its not working...
77
votes
6answers
32k views
Remove empty strings from a list of strings
I want to remove all empty strings from a list of strings in python.
My idea looks like this:
while '' in str_list:
str_list.remove('')
Is there any more pythonic way to do this?
17
votes
5answers
4k views
1
vote
6answers
1k views
How to replace the some characters from the end of a string?
My question is very simple, but I didn't get the answer from google.
There is a python string:
s = "123123"
I want to replace the last 2 with x. Suppose there is a method called replace_last:
r ...
35
votes
13answers
58k views
How to check whether a string is not null & empty?
In my web app, I have a search field where I get some string and a combo box. So, I am sending two arguments to the remote function.
I want to check that the user input is not null and not empty. ...
16
votes
5answers
8k views
How to transliterate accented characters into plain ASCII characters?
What is the most efficient way to remove accents from a string e.g. ÈâuÑ becomes Eaun?
Is there a simple, built in way that I'm missing or a regular expression?
7
votes
7answers
13k views
How to remove spaces from a string
string txt = " i am a string "
i want to remove space from start of starting and end from string'
like after that it will be "i am a string"
...
1
vote
4answers
407 views
how to create a null string?
I have two constructors
MyObj(String s){ //first constructor
...
if(s==null) s = somecode;
this.s = s;
...
}
MyObj(): this(null) { } //second constructor
In this way, if ...
13
votes
2answers
17k views
Java - Convert String to Uri
How can I convert a String to a Uri in Java (Android)? i.e.:
String myUrl = "http://stackoverflow.com";
myUri = ???;
65
votes
8answers
28k 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 ...
9
votes
3answers
7k views
NSString is empty
How do you test if an NSString is empty? or all whitespace or nil? with a single method call?
2
votes
7answers
8k views
How to remove numbers from a string with RegEx
I have a string like this:
" 23 PM"
I would like to remove 23 so I'm left with PM or (with space truncated) just PM.
Any suggestions?
Needs to be in PHP
11
votes
3answers
10k views
Jquery call function from a string
Is it possible to call a function by using the strings ?.
i.e i have a variable var target = 'next';. Using this string i want to call the jquery method next() . Should i use target + '()' (this is ...
106
votes
4answers
155k views
Python: read file line by line into array
How do I read every line of a file in Python and store each line as an element in an array?
I want to read the file line by line and each line is appended to the end of the array. I could not find ...
5
votes
4answers
5k views
How to use Unicode in C++?
Assuming a very simple program that:
ask a name.
store the name in a variable.
display the variable content on the screen.
It's so simple that is the first thing that one learns.
But my problem ...
83
votes
4answers
86k views
String comparison in Python: is vs. ==
I noticed a Python script I was writing was acting squirrelly, and traced it to an infinite loop, where the loop condition was "while line is not ''". Running through it in the debugger, it turned out ...

