Top "Character" questions

Refers to a symbol that represents a letter or number.

How can I remove a character from a string using Javascript?

I am so close to getting this, but it just isn't right. All I would like to do is remove …

javascript string replace character
What characters do I need to escape in XML documents?

What characters must be escaped in XML documents, or where could I find such a list?

xml escaping character
How can I check if a single character appears in a string?

In Java is there a way to check the condition: "Does this single character appear at all in string x" …

java validation string character
Replace a character at a specific index in a string?

I'm trying to replace a character at a specific index in a string. What I'm doing is: String myName = "domanokz"; …

java string replace indexing character
Remove all occurrences of char from string

I can use this: String str = "TextX Xto modifyX"; str = str.replace('X','');//that does not work because there …

java string character
Converting String to "Character" array in Java

I want to convert a String to an array of objects of Character class but I am unable to perform …

java arrays string character
Python: Get the first character of the first string in a list?

How would I get the first character from the first string in a list in Python? It seems that I …

python string list character
Converting characters to integers in Java

Can someone please explain to me what is going on here: char c = '+'; int i = (int)c; System.…

java integer type-conversion character primitive
For every character in string

How would I do a for loop on every character in string in C++?

c++ loops for-loop character