Java java.lang String Contain

Java examples for java.lang:String Contain

Description

Click the following links for the tutorial for java.lang and String Contain.

  1. safe Contains Ignore Case
  2. Checks if the String contains any character in the given set of characters. A null String will return false.
  3. Checks if String contains a search character, handling null.
  4. Checks if the String contains only certain characters. A null String will return false.
  5. Checks whether a given string only contains numeric characters and thus is a number.
  6. Add brackets ( '(' and ')' ) around source when it contains any white space characters.
  7. Tells whether or not the given string contains or not new line characters (both line feed as carriage return).
  8. Check if a string contains Only the char from a char array


  9. Checks that the String does not contain certain characters. A null String will return true.
  10. If a string contains another string Ignore Case
  11. Checks if String contains a search String irrespective of case, handling null.
  12. Checks if the String contains only whitespace. null will return false.
  13. Checks if a String contains a valid numeric, in this definition either 1 or more digits or 0 or more digits, followed by a dot (.), followed by 1 or more digits.
  14. Judge if the specified querying string contain GROUP BY statement
  15. Return a string that contains a description of how to use a class that calls this method.
  16. Converts a CSV(comma-separated value) list into a vector, containing all values as strings.


  17. Allows to check a string contains a double.
  18. Converts a string containing an absolute path to a string containing a path relative
  19. Determines if a string is in a list of phrases
  20. Determines if any string in a list are in a given phrase
  21. Determines if any strings in a list are in a list of phrases
  22. Determines if any words in a list are in a given phrase.