json format

This commit is contained in:
Looly
2024-08-10 12:01:10 +08:00
parent 40fbed9173
commit 011abcba4b
11 changed files with 125 additions and 20 deletions

View File

@@ -1145,7 +1145,7 @@ public class CharSequenceUtil extends StrValidator {
* @return 移除后的字符串
* @since 5.3.8
*/
public static String removeAny(final CharSequence str, final CharSequence... strsToRemove) {
public static String removeAll(final CharSequence str, final CharSequence... strsToRemove) {
String result = toStringOrNull(str);
if (isNotEmpty(str)) {
for (final CharSequence strToRemove : strsToRemove) {