answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you find duplicate character in string?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What menu command do you use to locate occurrrences of a character string string?

either by using find or find and replace


Difference between character and string?

A string ends with a '\0' character,but character is not.


Which character in string is used to end the string?

Character zero (the byte with the decimal value zero) is sometimes used to end a string. But in other cases, the size of the string is stored at the beginning of the string, and there is no end-of-string character. This allows any character to be included in the string.


How do you convert a character into a string?

A string is, by definition, a character array. No conversion is required.


What is th function of the charindex?

The CHARINDEX function in SQL is used to find the position of a specific character or substring within a string. It returns the starting position of the substring or character within the given string.


How do you convert a string into a character array?

A string is, by definition, a character array. No conversion is required.


Is string is an object?

No. A string is, by definition, a character array.


Is string an object?

No. A string is, by definition, a character array.


What is the difference between A and A in string?

Well, A is an identifier; 'A' is a character-literal; "A" is a string literal (of 1 character); "'A'" is another string literal (of 3 characters).


A character array terminated with the null character is most correctly called what?

zero-terminated string


(variable) = a(not a string!)?

Character


Is special symbols are valid as a string in java?

Yes. Any special character inside the String is considered as part of the string variable and would not be treated as a special character. Ex: String str = "ABC_$4"; is a valid string declaration