About 111,000 results
Open links in new tab
  1. Difference between String trim() and strip() methods

    The methods that only accept a char value cannot support supplementary characters. ... The methods that accept an int value support all Unicode characters, including supplementary …

  2. How do I compare strings in Java? - Stack Overflow

    Apr 2, 2013 · Other Methods To Consider String.equalsIgnoreCase () value equality that ignores case. Beware, however, that this method can have unexpected results in various locale …

  3. How to use the toString method in Java? - Stack Overflow

    Sep 1, 2010 · Can anybody explain to me the concept of the toString() method, defined in the Object class? How is it used, and what is its purpose?

  4. Remove part of string in Java - Stack Overflow

    I want to remove a part of string from one character, that is: Source string: manchester united (with nice players) Target string: manchester united

  5. Returning String Methods in Java? - Stack Overflow

    Returning String Methods in Java? Asked 10 years, 8 months ago Modified 10 years, 8 months ago Viewed 103k times

  6. Sort a single String in Java - Stack Overflow

    Is there a native way to sort a String by its contents in java? E.g. String s = "edcba" -> "abcde"

  7. java - Reverse a string without using string functions - Stack …

    Aug 2, 2016 · Considering Java I think we cannot accomplish reverse without using functions since it does not support pointers directly.

  8. How do I invoke a Java method when given the method name as a …

    785 If I have two variables: Object obj; String methodName = "getName"; Without knowing the class of obj, how can I call the method identified by methodName on it? The method being …

  9. java - Difference between String replace () and replaceAll () - Stack ...

    May 31, 2012 · What's the difference between java.lang.String 's replace() and replaceAll() methods, other than the latter uses regex? For simple substitutions like, replace . with /, is …

  10. java - compareTo () vs. equals () - Stack Overflow

    Oct 11, 2019 · When testing for equality of String's in Java I have always used equals() because to me this seems to be the most natural method for it. After all, its name already says what it is …