Posts related to tag: Characters


Java- Find first and all non-repeated characters from String

In Java, to find the first and all non-repeated characters from a string, you can use the following code: NonRepeatedChar.java […] Continue reading »

Remove All Special Character from String in Java

In Java, to remove all special character form a given string, we can use the replaceAll(String regex, String replacement) method […] Continue reading »