-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path130.java
More file actions
6677 lines (5739 loc) · 213 KB
/
Copy path130.java
File metadata and controls
6677 lines (5739 loc) · 213 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2015, Haiyang Li.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.landawn.abacus.util;
import static com.landawn.abacus.util.WD._BACKSLASH;
import static com.landawn.abacus.util.WD._QUOTATION_D;
import static com.landawn.abacus.util.WD._QUOTATION_S;
import static java.util.logging.Level.WARNING;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.text.Normalizer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Deque;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.RandomAccess;
import java.util.logging.Logger;
import java.util.regex.Pattern;
import com.landawn.abacus.annotation.Beta;
import com.landawn.abacus.annotation.Internal;
import com.landawn.abacus.util.u.Optional;
import com.landawn.abacus.util.u.OptionalDouble;
import com.landawn.abacus.util.u.OptionalFloat;
import com.landawn.abacus.util.u.OptionalInt;
import com.landawn.abacus.util.u.OptionalLong;
import com.landawn.abacus.util.function.IntUnaryOperator;
/**
* <p>
* Note: This class includes codes copied from Apache Commons Lang, Google Guava and other open source projects under the Apache License 2.0.
* The methods copied from other libraries/frameworks/projects may be modified in this class.
* </p>
*
* @author haiyangl
*
*/
public abstract class StringUtil {
// public static final String EMPTY_STRING = N.EMPTY_STRING;
/**
* A regex pattern for recognizing blocks of whitespace characters. The
* apparent convolutedness of the pattern serves the purpose of ignoring
* "blocks" consisting of only a single space: the pattern is used only to
* normalize whitespace, condensing "blocks" down to a single space, thus
* matching the same would likely cause a great many noop replacements.
*/
private static final Pattern WHITESPACE_PATTERN = Pattern.compile("(?: |\\u00A0|\\s|[\\s&&[^ ]])\\s*");
private static final Map<Object, Splitter> splitterPool = new HashMap<>();
private static final Map<Object, Splitter> trimSplitterPool = new HashMap<>();
private static final Map<Object, Splitter> preserveSplitterPool = new HashMap<>();
private static final Map<Object, Splitter> trimPreserveSplitterPool = new HashMap<>();
static {
final List<String> delimiters = N.asList(" ", " ", " ", "\t", "\n", "\r", ",", ", ", ";", "; ", ":", ": ", " : ", "-", " - ", "_", " _ ", "#", "##",
" # ", "=", "==", " = ", "|", " | ", "||", " || ", "&", "&&", "@", "@@", "$", "$$", "*", "**", "+", "++");
for (String delimiter : delimiters) {
splitterPool.put(delimiter, Splitter.with(delimiter).omitEmptyStrings(true));
trimSplitterPool.put(delimiter, Splitter.with(delimiter).omitEmptyStrings(true).trim(true));
preserveSplitterPool.put(delimiter, Splitter.with(delimiter));
trimPreserveSplitterPool.put(delimiter, Splitter.with(delimiter).trim(true));
if (delimiter.length() == 1) {
char delimiterChar = delimiter.charAt(0);
splitterPool.put(delimiterChar, Splitter.with(delimiterChar).omitEmptyStrings(true));
trimSplitterPool.put(delimiterChar, Splitter.with(delimiterChar).omitEmptyStrings(true).trim(true));
preserveSplitterPool.put(delimiterChar, Splitter.with(delimiterChar));
trimPreserveSplitterPool.put(delimiterChar, Splitter.with(delimiterChar).trim(true));
}
}
}
static final Field strValueField;
static volatile boolean isStringCharsGettable = true;
static final Constructor<String> sharedStringConstructor;
static {
Field tmp = null;
strValueField = ((tmp != null) && tmp.getName().equals("value") && tmp.getType().equals(char[].class)) ? tmp : null;
if (strValueField != null) {
strValueField.setAccessible(true);
}
Constructor<String> tmpConstructor = null;
try {
tmpConstructor = String.class.getDeclaredConstructor(char[].class, boolean.class);
tmpConstructor.setAccessible(true);
} catch (Exception e) {
// ignore.
}
sharedStringConstructor = tmpConstructor;
}
private StringUtil() {
// Singleton. Utility class.
}
// Abbreviating
// -----------------------------------------------------------------------
/**
* <p>
* Abbreviates a String using ellipses. This will turn
* "Now is the time for all good men" into "Now is the time for..."
* </p>
*
* <p>
* Specifically:
* </p>
* <ul>
* <li>If {@code str} is less than or equals to {@code maxWidth} characters
* long, return it.</li>
* <li>Else abbreviate it to {@code (substring(str, 0, max-3) + "...")}.</li>
* <li>If {@code maxWidth} is less than {@code 4}, throw an
* {@code IllegalArgumentException}.</li>
* <li>In no case will it return a String of length greater than
* {@code maxWidth}.</li>
* </ul>
*
* <pre>
* N.abbreviate(null, *) = null
* N.abbreviate("", 4) = ""
* N.abbreviate("abcdefg", 6) = "abc..."
* N.abbreviate("abcdefg", 7) = "abcdefg"
* N.abbreviate("abcdefg", 8) = "abcdefg"
* N.abbreviate("abcdefg", 4) = "a..."
* N.abbreviate("abcdefg", 3) = IllegalArgumentException
* </pre>
*
* @param str
* the String to check, may be null
* @param maxWidth
* maximum length of result String, must be at least 4
* @return abbreviated String, {@code ""} if null or "" String input
* @throws IllegalArgumentException
* if the width is too small
* @since 2.0
*/
public static String abbreviate(final String str, final int maxWidth) {
if (maxWidth < 4) {
throw new IllegalArgumentException("Minimum abbreviation width is 4");
}
if (N.isNullOrEmpty(str)) {
return str;
}
return str.length() <= maxWidth ? str : str.substring(0, maxWidth - 3) + "...";
}
public static String reverse(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
final StringBuilder sb = Objectory.createStringBuilder();
try {
sb.append(str);
return sb.reverse().toString();
} finally {
Objectory.recycle(sb);
}
}
/**
* <p>
* Reverses a String that is delimited by a specific character.
* </p>
*
* <p>
* The Strings between the delimiters are not reversed. Thus
* java.lang.String becomes String.lang.java (if the delimiter is
* {@code '.'}).
* </p>
*
* <pre>
* N.reverseDelimited(null, *) = null
* N.reverseDelimited("", *) = ""
* N.reverseDelimited("a.b.c", 'x') = "a.b.c"
* N.reverseDelimited("a.b.c", ".") = "c.b.a"
* </pre>
*
* @param str
* the String to reverse, may be null
* @param delimiter
* the delimiter character to use
* @return the reversed String, {@code null} if null String input
* @since 2.0
*/
public static String reverseDelimited(final String str, final char delimiter) {
if (N.isNullOrEmpty(str)) {
return str;
}
// could implement manually, but simple way is to reuse other,
// probably slower, methods.
final String[] strs = split(str, delimiter);
N.reverse(strs);
return join(strs, delimiter);
}
public static String reverseDelimited(final String str, final String delimiter) {
if (N.isNullOrEmpty(str)) {
return str;
}
// could implement manually, but simple way is to reuse other,
// probably slower, methods.
final String[] strs = split(str, delimiter);
N.reverse(strs);
return Joiner.with(delimiter).reuseCachedBuffer(true).appendAll(strs).toString();
}
public static String padStart(final String str, final int minLength) {
return padStart(str, minLength, WD._SPACE);
}
/**
*
* @param str
* @param minLength
* @param padChar
* @return
*/
public static String padStart(String str, final int minLength, final char padChar) {
if (str == null) {
str = N.EMPTY_STRING;
} else if (str.length() >= minLength) {
return str;
}
int delta = minLength - str.length();
final char[] chars = new char[minLength];
N.fill(chars, 0, delta, padChar);
str.getChars(0, str.length(), chars, delta);
return newString(chars, true);
}
public static String padStart(String str, final int minLength, final String padStr) {
if (str == null) {
str = N.EMPTY_STRING;
} else if (str.length() >= minLength) {
return str;
}
int delta = ((minLength - str.length()) % padStr.length() == 0) ? ((minLength - str.length()) / padStr.length())
: ((minLength - str.length()) % padStr.length() + 1);
switch (delta) {
case 1:
return padStr + str;
case 2:
return padStr + padStr + str;
case 3:
return padStr + padStr + padStr + str;
default: {
final StringBuilder sb = Objectory.createStringBuilder();
try {
for (int i = 0; i < delta; i++) {
sb.append(padStr);
}
sb.append(str);
return sb.toString();
} finally {
Objectory.recycle(sb);
}
}
}
}
public static String padEnd(final String str, final int minLength) {
return padEnd(str, minLength, WD._SPACE);
}
/**
*
* @param str
* @param minLength
* @param padChar
* @return
*/
public static String padEnd(String str, final int minLength, final char padChar) {
if (str == null) {
str = N.EMPTY_STRING;
} else if (str.length() >= minLength) {
return str;
}
final char[] chars = new char[minLength];
str.getChars(0, str.length(), chars, 0);
N.fill(chars, str.length(), minLength, padChar);
return newString(chars, true);
}
public static String padEnd(String str, final int minLength, final String padStr) {
if (str == null) {
str = N.EMPTY_STRING;
} else if (str.length() >= minLength) {
return str;
}
int delta = ((minLength - str.length()) % padStr.length() == 0) ? ((minLength - str.length()) / padStr.length())
: ((minLength - str.length()) % padStr.length() + 1);
switch (delta) {
case 1:
return str + padStr;
case 2:
return str + padStr + padStr;
case 3:
return str + padStr + padStr + padStr;
default: {
StringBuilder sb = Objectory.createStringBuilder();
try {
sb.append(str);
for (int i = 0; i < delta; i++) {
sb.append(padStr);
}
return sb.toString();
} finally {
Objectory.recycle(sb);
}
}
}
}
public static String repeat(final char ch, final int n) {
N.checkArgNotNegative(n, "n");
if (n == 0) {
return N.EMPTY_STRING;
} else if (n == 1) {
return String.valueOf(ch);
}
if (n < 16) {
final char[] array = new char[n];
Arrays.fill(array, ch);
return newString(array, true);
} else {
final char[] array = new char[n];
array[0] = ch;
int cnt = 1;
for (; cnt < n - cnt; cnt <<= 1) {
N.copy(array, 0, array, cnt, cnt);
}
if (cnt < n) {
N.copy(array, 0, array, cnt, n - cnt);
}
return newString(array, true);
}
}
public static String repeat(final char ch, final int n, final char delimiter) {
return repeat(String.valueOf(ch), n, String.valueOf(delimiter));
}
/**
*
* @param str
* @param repeat
* @return
*/
public static String repeat(final String str, final int repeat) {
return repeat(str, repeat, N.EMPTY_STRING);
}
public static String repeat(String str, final int n, String delimiter) {
N.checkArgNotNegative(n, "n");
str = str == null ? N.EMPTY_STRING : str;
delimiter = delimiter == null ? N.EMPTY_STRING : delimiter;
if (n == 0 || (N.isNullOrEmpty(str) && N.isNullOrEmpty(delimiter))) {
return N.EMPTY_STRING;
} else if (n == 1) {
return str;
}
final int strLen = str.length();
final int delimiterLen = delimiter.length();
final int len = strLen + delimiterLen;
if (Integer.MAX_VALUE / len < n) {
throw new ArrayIndexOutOfBoundsException("Required array size too large: " + 1L * len * n);
}
final int size = len * n - delimiterLen;
final char[] cbuf = new char[size];
str.getChars(0, strLen, cbuf, 0);
delimiter.getChars(0, delimiterLen, cbuf, strLen);
int cnt = 0;
for (cnt = len; cnt < size - cnt; cnt <<= 1) {
N.copy(cbuf, 0, cbuf, cnt, cnt);
}
if (cnt < size) {
N.copy(cbuf, 0, cbuf, cnt, size - cnt);
}
return newString(cbuf, true);
}
public static char toLowerCase(final char ch) {
return Character.toLowerCase(ch);
}
/**
* <p>
* Converts a String to lower case as per {@link String#toLowerCase()}.
* </p>
*
* <p>
* A {@code null} input String returns {@code null}.
* </p>
*
* <pre>
* StrUtil.toLowerCase(null) = null
* StrUtil.toLowerCase("") = ""
* StrUtil.toLowerCase("aBc") = "abc"
* </pre>
*
* <p>
* <strong>Note:</strong> As described in the documentation for
* {@link String#toLowerCase()}, the result of this method is affected by
* the current locale. For platform-independent case transformations, the
* method {@link #toLowerCase(String, Locale)} should be used with a specific
* locale (e.g. {@link Locale#ENGLISH}).
* </p>
*
* @param str
* the String to lower case, may be null
* @return the lower cased String, {@code null} if null String input
*/
public static String toLowerCase(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
return str.toLowerCase();
}
/**
* <p>
* Converts a String to lower case as per {@link String#toLowerCase(Locale)}
* .
* </p>
*
* <p>
* A {@code null} input String returns {@code null}.
* </p>
*
* <pre>
* StrUtil.toLowerCase(null, Locale.ENGLISH) = null
* StrUtil.toLowerCase("", Locale.ENGLISH) = ""
* StrUtil.toLowerCase("aBc", Locale.ENGLISH) = "abc"
* </pre>
*
* @param str
* the String to lower case, may be null
* @param locale
* the locale that defines the case transformation rules, must
* not be null
* @return the lower cased String, {@code null} if null String input
* @since 2.5
*/
public static String toLowerCase(final String str, final Locale locale) {
if (N.isNullOrEmpty(str)) {
return str;
}
return str.toLowerCase(locale);
}
public static String toLowerCaseWithUnderscore(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
final StringBuilder sb = Objectory.createStringBuilder();
try {
for (int i = 0, len = str.length(); i < len; i++) {
char ch = str.charAt(i);
if (Character.isUpperCase(ch)) {
if (i > 0 && (!Character.isUpperCase(str.charAt(i - 1)) || (i < len - 1 && Character.isLowerCase(str.charAt(i + 1))))) {
if (sb.length() > 0 && sb.charAt(sb.length() - 1) != WD._UNDERSCORE) {
sb.append(WD._UNDERSCORE);
}
}
sb.append(Character.toLowerCase(ch));
} else {
if (i > 0 && ((isAsciiNumeric(ch) && !isAsciiNumeric(str.charAt(i - 1))) || (isAsciiNumeric(str.charAt(i - 1)) && !isAsciiNumeric(ch)))) {
if (sb.length() > 0 && sb.charAt(sb.length() - 1) != WD._UNDERSCORE) {
sb.append(WD._UNDERSCORE);
}
}
sb.append(ch);
}
}
return sb.toString();
} finally {
Objectory.recycle(sb);
}
}
public static char toUpperCase(final char ch) {
return Character.toUpperCase(ch);
}
// Case conversion
// -----------------------------------------------------------------------
/**
* <p>
* Converts a String to upper case as per {@link String#toUpperCase()}.
* </p>
*
* <p>
* A {@code null} input String returns {@code null}.
* </p>
*
* <pre>
* N.toUpperCase(null) = null
* N.toUpperCase("") = ""
* N.toUpperCase("aBc") = "ABC"
* </pre>
*
* <p>
* <strong>Note:</strong> As described in the documentation for
* {@link String#toUpperCase()}, the result of this method is affected by
* the current locale. For platform-independent case transformations, the
* method {@link #toLowerCase(String, Locale)} should be used with a specific
* locale (e.g. {@link Locale#ENGLISH}).
* </p>
*
* @param str
* the String to upper case, may be null
* @return the upper cased String, {@code null} if null String input
*/
public static String toUpperCase(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
return str.toUpperCase();
}
/**
* <p>
* Converts a String to upper case as per {@link String#toUpperCase(Locale)}
* .
* </p>
*
* <p>
* A {@code null} input String returns {@code null}.
* </p>
*
* <pre>
* N.toUpperCase(null, Locale.ENGLISH) = null
* N.toUpperCase("", Locale.ENGLISH) = ""
* N.toUpperCase("aBc", Locale.ENGLISH) = "ABC"
* </pre>
*
* @param str
* the String to upper case, may be null
* @param locale
* the locale that defines the case transformation rules, must
* not be null
* @return the upper cased String, {@code null} if null String input
* @since 2.5
*/
public static String toUpperCase(final String str, final Locale locale) {
if (N.isNullOrEmpty(str)) {
return str;
}
return str.toUpperCase(locale);
}
public static String toUpperCaseWithUnderscore(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
final StringBuilder sb = Objectory.createStringBuilder();
try {
for (int i = 0, len = str.length(); i < len; i++) {
char ch = str.charAt(i);
if (Character.isUpperCase(ch)) {
if (i > 0 && (!Character.isUpperCase(str.charAt(i - 1)) || (i < len - 1 && Character.isLowerCase(str.charAt(i + 1))))) {
if (sb.length() > 0 && sb.charAt(sb.length() - 1) != WD._UNDERSCORE) {
sb.append(WD._UNDERSCORE);
}
}
sb.append(ch);
} else {
if (i > 0 && ((isAsciiNumeric(ch) && !isAsciiNumeric(str.charAt(i - 1))) || (isAsciiNumeric(str.charAt(i - 1)) && !isAsciiNumeric(ch)))) {
if (sb.length() > 0 && sb.charAt(sb.length() - 1) != WD._UNDERSCORE) {
sb.append(WD._UNDERSCORE);
}
}
sb.append(Character.toUpperCase(ch));
}
}
return sb.toString();
} finally {
Objectory.recycle(sb);
}
}
/**
*
* @param str
* @return
*/
public static String toCamelCase(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
if (str.indexOf(WD._UNDERSCORE) >= 0) {
String[] substrs = StringUtil.split(str, WD._UNDERSCORE);
final StringBuilder sb = Objectory.createStringBuilder();
try {
for (String substr : substrs) {
if (N.notNullOrEmpty(substr)) {
sb.append(StringUtil.toLowerCase(substr));
if (sb.length() > substr.length()) {
sb.setCharAt(sb.length() - substr.length(), Character.toTitleCase(substr.charAt(0)));
}
}
}
return sb.toString();
} finally {
Objectory.recycle(sb);
}
}
for (int i = 0, len = str.length(); i < len; i++) {
if (Character.isLowerCase(str.charAt(i))) {
if (i == 1) {
return StringUtil.uncapitalize(str);
} else if (i > 1) {
return str.substring(0, i - 1).toLowerCase() + str.substring(i - 1);
}
break;
} else if ((i + 1) == str.length()) {
return str.toLowerCase();
}
}
return str;
}
public static char swapCase(final char ch) {
return Character.isLowerCase(ch) ? Character.toUpperCase(ch) : Character.toLowerCase(ch);
}
/**
* <p>
* Swaps the case of a String changing upper and title case to lower case,
* and lower case to upper case.
* </p>
*
* <ul>
* <li>Upper case character converts to Lower case</li>
* <li>Title case character converts to Lower case</li>
* <li>Lower case character converts to Upper case</li>
* </ul>
*
* <p>
* For a word based algorithm, see
* {@link org.apache.commons.lang3.text.WordUtils#swapCase(String)}. A
* {@code null} input String returns {@code null}.
* </p>
*
* <pre>
* N.swapCase(null) = null
* N.swapCase("") = ""
* N.swapCase("The dog has a BONE") = "tHE DOG HAS A bone"
* </pre>
*
* <p>
* NOTE: This method changed in Lang version 2.0. It no longer performs a
* word based algorithm. If you only use ASCII, you will notice no change.
* That functionality is available in
* org.apache.commons.lang3.text.WordUtils.
* </p>
*
* @param str
* the String to swap case, may be null
* @return the changed String, {@code null} if null String input
*/
public static String swapCase(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
final char[] cbuf = str.toCharArray();
char ch = 0;
for (int i = 0, len = cbuf.length; i < len; i++) {
ch = cbuf[i];
if (Character.isUpperCase(ch) || Character.isTitleCase(ch)) {
cbuf[i] = Character.toLowerCase(ch);
} else if (Character.isLowerCase(ch)) {
cbuf[i] = Character.toUpperCase(ch);
}
}
return newString(cbuf, true);
}
/**
*
* @param str
* @return
*/
public static String capitalize(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
char ch = str.charAt(0);
if (Character.isTitleCase(ch)) {
return str;
}
if (str.length() == 1) {
return String.valueOf(Character.toTitleCase(ch));
} else {
return Character.toTitleCase(ch) + str.substring(1);
}
}
/**
*
* @param str
* @return
*/
public static String uncapitalize(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
char ch = str.charAt(0);
if (Character.isLowerCase(ch)) {
return str;
}
if (str.length() == 1) {
return String.valueOf(Character.toLowerCase(ch));
} else {
return Character.toLowerCase(ch) + str.substring(1);
}
}
/**
* Replace ''' or '"' with '\'' or '\"' if the previous char of the
* quotation is not '\'. original String is returned if the specified String
* is {@code null} or empty.
*
* @param str
* @return
*/
public static String quoteEscaped(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
final StringBuilder sb = Objectory.createStringBuilder();
final char[] chars = getCharsForReadOnly(str);
try {
char ch = 0;
for (int i = 0, len = str.length(); i < len; i++) {
ch = chars[i];
if ((ch == _BACKSLASH) && (i < (len - 1))) {
sb.append(ch);
sb.append(str.charAt(++i));
} else if ((ch == _QUOTATION_S) || (ch == _QUOTATION_D)) {
sb.append(_BACKSLASH);
sb.append(ch);
} else {
sb.append(ch);
}
}
return sb.toString();
} finally {
Objectory.recycle(sb);
}
}
// --------------------------------------------------------------------------
/**
* <p>
* Converts the char to the unicode format '\u0020'.
* </p>
*
* <p>
* This format is the Java source code format.
* </p>
*
* <pre>
* CharUtils.unicodeEscaped(' ') = "\u0020"
* CharUtils.unicodeEscaped('A') = "\u0041"
* </pre>
*
* @param ch
* the character to convert
* @return the escaped Unicode string
*/
public static String unicodeEscaped(final char ch) {
if (ch < 0x10) {
return "\\u000" + Integer.toHexString(ch);
} else if (ch < 0x100) {
return "\\u00" + Integer.toHexString(ch);
} else if (ch < 0x1000) {
return "\\u0" + Integer.toHexString(ch);
}
return "\\u" + Integer.toHexString(ch);
}
/**
* <p>
* Similar to <a
* href="http://www.w3.org/TR/xpath/#function-normalize-space">
* http://www.w3.org/TR/xpath/#function-normalize -space</a>
* </p>
* <p>
* The function returns the argument string with whitespace normalized by
* using <code>{@link #trim(String)}</code> to remove leading and trailing
* whitespace and then replacing sequences of whitespace characters by a
* single space.
* </p>
* In XML Whitespace characters are the same as those allowed by the <a
* href="http://www.w3.org/TR/REC-xml/#NT-S">S</a> production, which is S
* ::= (#x20 | #x9 | #xD | #xA)+
* <p>
* Java's regexp pattern \s defines whitespace as [ \t\n\x0B\f\r]
*
* <p>
* For reference:
* </p>
* <ul>
* <li>\x0B = vertical tab</li>
* <li>\f = #xC = form feed</li>
* <li>#x20 = space</li>
* <li>#x9 = \t</li>
* <li>#xA = \n</li>
* <li>#xD = \r</li>
* </ul>
*
* <p>
* The difference is that Java's whitespace includes vertical tab and form
* feed, which this functional will also normalize. Additionally
* <code>{@link #trim(String)}</code> removes control characters (char <=
* 32) from both ends of this String.
* </p>
*
* @see Pattern
* @see #trim(String)
* @see <a
* href="http://www.w3.org/TR/xpath/#function-normalize-space">http://www.w3.org/TR/xpath/#function-normalize-space</a>
* @param str
* the source String to normalize whitespaces from, may be null
* @return the modified string with whitespace normalized, {@code null} if
* null String input
*
* @since 3.0
*/
public static String normalizeSpace(final String str) {
if (N.isNullOrEmpty(str)) {
return str;
}
return WHITESPACE_PATTERN.matcher(str.trim()).replaceAll(WD.SPACE);
}
/**
* <p>
* Replaces all occurrences of a String within another String.
* </p>
*
* <p>
* A {@code null} reference passed to this method is a no-op.
* </p>
*
* <pre>
* N.replaceAll(null, *, *) = null
* N.replaceAll("", *, *) = ""
* N.replaceAll("any", null, *) = "any"
* N.replaceAll("any", *, null) = "any"
* N.replaceAll("any", "", *) = "any"
* N.replaceAll("aba", "a", null) = "aba"
* N.replaceAll("aba", "a", "") = "b"
* N.replaceAll("aba", "a", "z") = "zbz"
* </pre>
*
* @see #replaceAll(String text, String searchString, String replacement,
* int max)
* @param str
* text to search and replace in, may be null
* @param target
* the String to search for, may be null
* @param replacement
* the String to replace it with, may be null
* @return the text with any replacements processed, {@code null} if null
* String input
*/
public static String replaceAll(final String str, final String target, final String replacement) {
return replaceAll(str, 0, target, replacement);
}
public static String replaceAll(final String str, final int fromIndex, final String target, final String replacement) {
return replace(str, fromIndex, target, replacement, -1);
}
/**
* <p>
* Replaces a String with another String inside a larger String, for the
* first {@code max} values of the search String.
* </p>
*
* <p>
* A {@code null} reference passed to this method is a no-op.