Top "String-utils" questions

StringUtils.isBlank() vs String.isEmpty()

I ran into some code that has the following: String foo = getvalue("foo"); if (StringUtils.isBlank(foo)) doStuff(); else doOtherStuff(); …

java string string-utils
Extract digits from string - StringUtils Java

I have a String and I want to extract the (only) sequence of digits in the string. Example: helloThisIsA1234Sample. …

java string apache-stringutils string-utils
Java Map Values to Comma Separated String

Is there an effective way to convert java map values to comma separated string using guava or StringUtils? Map<…

java csv map guava string-utils
StringUtils class not working in Android

I am using StringUtils class in Android code. but exception generated i.e. class not found. But already i used …

android string-utils
Where can I access StringUtils.replaceEach()?

The answer to Java escape HTML shows StringUtils.replaceEach() which runs similar to multiple StringUtils.replace()s, but accepting arrays …

string-utils
Java: How to RegEx or Substring Utils this String?

"Current Peak : 830 300" How can I get hold of the two numbers, but without the spaces. (There are 5 or more spaces …

java regex string substring string-utils
StringUtil indexOf() equivalent postgreSQL query

I need to implement stringUtils Class indexOf() method in postgresql. Lets say I have a table in which url is …

java postgresql indexof string-utils