You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/lang3/StringUtils.java
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7215,7 +7215,7 @@ public static String[] split(final String str, final String separatorChars, fina
7215
7215
}
7216
7216
7217
7217
/**
7218
-
* Splits a String by Character type as returned by {@code java.lang.Character.getType(char)}. Groups of contiguous characters of the same type are returned
7218
+
* Splits a String by Character type as returned by {@link Character#getType(int)}. Groups of contiguous characters of the same type are returned
7219
7219
* as complete tokens.
7220
7220
*
7221
7221
* <pre>
@@ -7232,6 +7232,7 @@ public static String[] split(final String str, final String separatorChars, fina
7232
7232
*
7233
7233
* @param str the String to split, may be {@code null}.
7234
7234
* @return an array of parsed Strings, {@code null} if null String input.
* Splits a String by Character type as returned by {@code java.lang.Character.getType(char)}. Groups of contiguous characters of the same type are returned
7243
-
* as complete tokens, with the following exception: if {@code camelCase} is {@code true}, the character of type {@code Character.UPPERCASE_LETTER}, if any,
7244
-
* immediately preceding a token of type {@code Character.LOWERCASE_LETTER} will belong to the following token rather than to the preceding, if any,
7245
-
* {@code Character.UPPERCASE_LETTER} token.
7244
+
* as complete tokens, with the following exception: if {@code camelCase} is {@code true}, the character of type {@link Character#UPPERCASE_LETTER}, if any,
7245
+
* immediately preceding a token of type {@link Character#LOWERCASE_LETTER} will belong to the following token rather than to the preceding, if any,
7246
+
* {@link Character#UPPERCASE_LETTER} token.
7246
7247
*
7247
7248
* @param str the String to split, may be {@code null}.
7248
7249
* @param camelCase whether to use so-called "camel-case" for letter types.
* Splits a String by Character type as returned by {@code java.lang.Character.getType(char)}. Groups of contiguous characters of the same type are returned
7290
-
* as complete tokens, with the following exception: the character of type {@code Character.UPPERCASE_LETTER}, if any, immediately preceding a token of type
7291
-
* {@code Character.LOWERCASE_LETTER} will belong to the following token rather than to the preceding, if any, {@code Character.UPPERCASE_LETTER} token.
7290
+
* Splits a String by Character type as returned by {@link Character#getType(int)}. Groups of contiguous characters of the same type are returned
7291
+
* as complete tokens, with the following exception: the character of type {@link Character#UPPERCASE_LETTER}, if any, immediately preceding a token of type
7292
+
* {@link Character#LOWERCASE_LETTER} will belong to the following token rather than to the preceding, if any, {@link Character#UPPERCASE_LETTER} token.
0 commit comments