Top "Char" questions

char typically refers to a character data-type, representing letters of text.

F#, char seq -> strings

A quick question that may be more of a rant (but I hope to be enlightened instead). In F# a …

string f# char seq
Cannot find Symbol for char

School assignment, so this code is meaningless. Whenever I try to use a char, I always seem to get this …

java char cannot-find-symbol
antlr match any character except

I have the following deffinition of fragment: fragment CHAR :'a'..'z'|'A'..'Z'|'\n'|'\t'|'\\'|EOF; …

string char antlr match
Conversion of UTF-8 char * to CString

How do I convert a string in UTF-8 char* to CString?

c++ utf-8 char cstring unicode-string
How to use something like the charAt for integers

I am trying to make a program that uses three digit numbers to identify items and I am trying to …

java string char int charat
Pass char pointer/array to a function

I am trying to understand char pointer in C more but one thing gets me. Supposed I would like to …

c++ c pointers char char-pointer
cin for an int inputing a char causes Loop that is supposed to check input to go wild

This is a function of my game it will ask for input and cin into "iAuswahl"! Then the while loop …

c++ char int buffer cin
Why does the string Remove() method allow a char as a parameter?

Consider this code: var x = "tesx".Remove('x'); If I run this code, I get this exception: startIndex must be …

c# string char
Check if a string has only numbers in C?

I'm trying to write a simple code to check if a string only has numbers in it. So far it's …

c arrays char isalpha
Getting char* array from c++ stringstream ostringstream

I am trying to copy ostringstream to a char* array and am hoping someone can help me with understanding where …

c++ arrays char ostringstream