From 4f3b8025948e3dd2d6acf6dfecacac4597cae0e8 Mon Sep 17 00:00:00 2001
From: Henri Yandell null
separator will return the input string.
If nothing is found, the string input is returned.
+ * ** StringUtils.substringBefore(null, *) = null * StringUtils.substringBefore("", *) = "" @@ -1795,6 +1797,8 @@ public class StringUtils { * Anull
separator will return the empty string if the * input string is notnull
. * + *If nothing is found, the empty string is returned.
+ * ** StringUtils.substringAfter(null, *) = null * StringUtils.substringAfter("", *) = "" @@ -1834,6 +1838,8 @@ public class StringUtils { * An empty ("") string input will return the empty string. * An empty ornull
separator will return the input string. * + *If nothing is found, the string input is returned.
+ * ** StringUtils.substringBeforeLast(null, *) = null * StringUtils.substringBeforeLast("", *) = "" @@ -1871,6 +1877,8 @@ public class StringUtils { * An empty ornull
separator will return the empty string if * the input string is notnull
. * + *If nothing is found, the empty string is returned.
+ * ** StringUtils.substringAfterLast(null, *) = null * StringUtils.substringAfterLast("", *) = ""