/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/ |
H A D | StringUtilsEqualsIndexOfTest.java | 101 assertTrue(StringUtils.equals(null, null)); in testEquals() 102 assertTrue(StringUtils.equals(fooCs, fooCs)); in testEquals() 103 assertTrue(StringUtils.equals(fooCs, new StringBuilder(FOO))); in testEquals() 104 assertTrue(StringUtils.equals(fooCs, new String(new char[] { 'f', 'o', 'o' }))); in testEquals() 105 assertTrue(StringUtils.equals(fooCs, new CustomCharSequence(FOO))); in testEquals() 106 assertTrue(StringUtils.equals(new CustomCharSequence(FOO), fooCs)); in testEquals() 107 assertFalse(StringUtils.equals(fooCs, new String(new char[] { 'f', 'O', 'O' }))); in testEquals() 108 assertFalse(StringUtils.equals(fooCs, barCs)); in testEquals() 109 assertFalse(StringUtils.equals(fooCs, null)); in testEquals() 110 assertFalse(StringUtils.equals(null, fooCs)); in testEquals() [all …]
|
H A D | StringUtilsTest.java | 139 … final String actual = StringUtils.abbreviate(abcdefghijklmno, abbrevMarker, offset, maxWidth); in assertAbbreviateWithAbbrevMarkerAndOffset() 152 final String actual = StringUtils.abbreviate(abcdefghijklmno, offset, maxWidth); in assertAbbreviateWithOffset() 169 res = StringUtils.split(str, sepStr); in innerTestSplit() 176 res = StringUtils.split(str2, sepStr); in innerTestSplit() 180 res = StringUtils.split(str, sepStr, -1); in innerTestSplit() 186 res = StringUtils.split(str, sepStr, 0); in innerTestSplit() 192 res = StringUtils.split(str, sepStr, 1); in innerTestSplit() 196 res = StringUtils.split(str, sepStr, 2); in innerTestSplit() 209 res = StringUtils.splitPreserveAllTokens(str, sepStr); in innerTestSplitPreserveAllTokens() 217 res = StringUtils.splitPreserveAllTokens(str2, sepStr); in innerTestSplitPreserveAllTokens() [all …]
|
H A D | StringUtilsSubstringTest.java | 38 assertNull(StringUtils.substring(null, 0)); in testSubstring_StringInt() 39 assertEquals("", StringUtils.substring("", 0)); in testSubstring_StringInt() 40 assertEquals("", StringUtils.substring("", 2)); in testSubstring_StringInt() 42 assertEquals("", StringUtils.substring(SENTENCE, 80)); in testSubstring_StringInt() 43 assertEquals(BAZ, StringUtils.substring(SENTENCE, 8)); in testSubstring_StringInt() 44 assertEquals(BAZ, StringUtils.substring(SENTENCE, -3)); in testSubstring_StringInt() 45 assertEquals(SENTENCE, StringUtils.substring(SENTENCE, 0)); in testSubstring_StringInt() 46 assertEquals("abc", StringUtils.substring("abc", -4)); in testSubstring_StringInt() 47 assertEquals("abc", StringUtils.substring("abc", -3)); in testSubstring_StringInt() 48 assertEquals("bc", StringUtils.substring("abc", -2)); in testSubstring_StringInt() [all …]
|
H A D | StringUtilsContainsTest.java | 38 assertFalse(StringUtils.contains(null, ' ')); in testContains_Char() 39 assertFalse(StringUtils.contains("", ' ')); in testContains_Char() 40 assertFalse(StringUtils.contains("", null)); in testContains_Char() 41 assertFalse(StringUtils.contains(null, null)); in testContains_Char() 42 assertTrue(StringUtils.contains("abc", 'a')); in testContains_Char() 43 assertTrue(StringUtils.contains("abc", 'b')); in testContains_Char() 44 assertTrue(StringUtils.contains("abc", 'c')); in testContains_Char() 45 assertFalse(StringUtils.contains("abc", 'z')); in testContains_Char() 50 assertFalse(StringUtils.contains(null, null)); in testContains_String() 51 assertFalse(StringUtils.contains(null, "")); in testContains_String() [all …]
|
H A D | StringUtilsIsTest.java | 31 assertFalse(StringUtils.isAlpha(null)); in testIsAlpha() 32 assertFalse(StringUtils.isAlpha("")); in testIsAlpha() 33 assertFalse(StringUtils.isAlpha(" ")); in testIsAlpha() 34 assertTrue(StringUtils.isAlpha("a")); in testIsAlpha() 35 assertTrue(StringUtils.isAlpha("A")); in testIsAlpha() 36 assertTrue(StringUtils.isAlpha("kgKgKgKgkgkGkjkjlJlOKLgHdGdHgl")); in testIsAlpha() 37 assertFalse(StringUtils.isAlpha("ham kso")); in testIsAlpha() 38 assertFalse(StringUtils.isAlpha("1")); in testIsAlpha() 39 assertFalse(StringUtils.isAlpha("hkHKHik6iUGHKJgU7tUJgKJGI87GIkug")); in testIsAlpha() 40 assertFalse(StringUtils.isAlpha("_")); in testIsAlpha() [all …]
|
H A D | StringUtilsTrimStripTest.java | 34 assertEquals(FOO, StringUtils.trim(FOO + " ")); in testTrim() 35 assertEquals(FOO, StringUtils.trim(" " + FOO + " ")); in testTrim() 36 assertEquals(FOO, StringUtils.trim(" " + FOO)); in testTrim() 37 assertEquals(FOO, StringUtils.trim(FOO + "")); in testTrim() 38 assertEquals("", StringUtils.trim(" \t\r\n\b ")); in testTrim() 39 assertEquals("", StringUtils.trim(StringUtilsTest.TRIMMABLE)); in testTrim() 40 … assertEquals(StringUtilsTest.NON_TRIMMABLE, StringUtils.trim(StringUtilsTest.NON_TRIMMABLE)); in testTrim() 41 assertEquals("", StringUtils.trim("")); in testTrim() 42 assertNull(StringUtils.trim(null)); in testTrim() 47 assertEquals(FOO, StringUtils.trimToNull(FOO + " ")); in testTrimToNull() [all …]
|
H A D | StringUtilsEmptyBlankTest.java | 33 assertTrue(StringUtils.isEmpty(null)); in testIsEmpty() 34 assertTrue(StringUtils.isEmpty("")); in testIsEmpty() 35 assertFalse(StringUtils.isEmpty(" ")); in testIsEmpty() 36 assertFalse(StringUtils.isEmpty("foo")); in testIsEmpty() 37 assertFalse(StringUtils.isEmpty(" foo ")); in testIsEmpty() 42 assertFalse(StringUtils.isNotEmpty(null)); in testIsNotEmpty() 43 assertFalse(StringUtils.isNotEmpty("")); in testIsNotEmpty() 44 assertTrue(StringUtils.isNotEmpty(" ")); in testIsNotEmpty() 45 assertTrue(StringUtils.isNotEmpty("foo")); in testIsNotEmpty() 46 assertTrue(StringUtils.isNotEmpty(" foo ")); in testIsNotEmpty() [all …]
|
H A D | StringUtilsStartsEndsWithTest.java | 42 assertTrue(StringUtils.startsWith(null, null), "startsWith(null, null)"); in testStartsWith() 43 assertFalse(StringUtils.startsWith(FOOBAR, null), "startsWith(FOOBAR, null)"); in testStartsWith() 44 assertFalse(StringUtils.startsWith(null, FOO), "startsWith(null, FOO)"); in testStartsWith() 45 assertTrue(StringUtils.startsWith(FOOBAR, ""), "startsWith(FOOBAR, \"\")"); in testStartsWith() 47 assertTrue(StringUtils.startsWith(foobar, foo), "startsWith(foobar, foo)"); in testStartsWith() 48 assertTrue(StringUtils.startsWith(FOOBAR, FOO), "startsWith(FOOBAR, FOO)"); in testStartsWith() 49 assertFalse(StringUtils.startsWith(foobar, FOO), "startsWith(foobar, FOO)"); in testStartsWith() 50 assertFalse(StringUtils.startsWith(FOOBAR, foo), "startsWith(FOOBAR, foo)"); in testStartsWith() 52 assertFalse(StringUtils.startsWith(foo, foobar), "startsWith(foo, foobar)"); in testStartsWith() 53 assertFalse(StringUtils.startsWith(bar, foobar), "startsWith(foo, foobar)"); in testStartsWith() [all …]
|
/aosp_15_r20/development/tools/winscope/src/common/ |
H A D | string_utils_test.ts | 17 import {StringUtils} from './string_utils'; 21 expect(StringUtils.parseBigIntStrippingUnit('-10')).toEqual(-10n); 22 expect(StringUtils.parseBigIntStrippingUnit('-10 unit')).toEqual(-10n); 23 expect(StringUtils.parseBigIntStrippingUnit('-10unit')).toEqual(-10n); 24 expect(StringUtils.parseBigIntStrippingUnit(' -10 unit ')).toEqual(-10n); 26 expect(StringUtils.parseBigIntStrippingUnit('0')).toEqual(0n); 27 expect(StringUtils.parseBigIntStrippingUnit('0 unit')).toEqual(0n); 28 expect(StringUtils.parseBigIntStrippingUnit('0unit')).toEqual(0n); 29 expect(StringUtils.parseBigIntStrippingUnit(' 0 unit ')).toEqual(0n); 31 expect(StringUtils.parseBigIntStrippingUnit('10')).toEqual(10n); [all …]
|
H A D | string_utils.ts | 18 class StringUtils { class 34 (StringUtils.isDigit(prevChar) || StringUtils.isLowerCase(prevChar)); 35 const currCharCouldBeWordStart = StringUtils.isUpperCase(currChar); 51 return StringUtils.capitalizeFirstCharIfAlpha(token); 58 if (!StringUtils.isAlpha(token[0])) { 79 return StringUtils.isAlpha(char) && char === char.toLowerCase(); 84 return StringUtils.isAlpha(char) && char === char.toUpperCase(); 100 if (!StringUtils.isAlpha(word[0])) { 107 export {StringUtils};
|
/aosp_15_r20/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/ |
D | StringUtilsTests.java | 42 StringUtils.toTitleCaseOfKeyLabel(lowerCase, locale)); in assert_toTitleCaseOfKeyLabel() 125 StringUtils.toTitleCaseOfKeyCode(lowerCase, locale)); in assert_toTitleCaseOfKeyCode() 158 StringUtils.capitalizeFirstCodePoint(text, locale)); in assert_capitalizeFirstCodePoint() 178 StringUtils.capitalizeFirstAndDowncaseRest(text, locale)); in assert_capitalizeFirstAndDowncaseRest() 202 assertFalse("empty array", StringUtils.containsInArray("key", new String[0])); in testContainsInArray() 203 assertFalse("not in 1 element", StringUtils.containsInArray("key", new String[] { in testContainsInArray() 206 assertFalse("not in 2 elements", StringUtils.containsInArray("key", new String[] { in testContainsInArray() 210 assertTrue("in 1 element", StringUtils.containsInArray("key", new String[] { in testContainsInArray() 213 assertTrue("in 2 elements", StringUtils.containsInArray("key", new String[] { in testContainsInArray() 220 assertFalse("null", StringUtils.containsInCommaSplittableText("key", null)); in testContainsInCommaSplittableText() [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/utils/src/test/java/software/amazon/awssdk/utils/ |
H A D | StringUtilsTest.java | 22 import static software.amazon.awssdk.utils.StringUtils.replacePrefixIgnoreCase; 41 assertNull(StringUtils.upperCase(null)); in testUpperCase() 43 "FOO TEST THING", StringUtils.upperCase("fOo test THING")); in testUpperCase() 45 "", StringUtils.upperCase("")); in testUpperCase() 50 assertNull(StringUtils.lowerCase(null)); in testLowerCase() 52 "foo test thing", StringUtils.lowerCase("fOo test THING")); in testLowerCase() 54 "", StringUtils.lowerCase("")); in testLowerCase() 59 assertNull(StringUtils.capitalize(null)); in testCapitalize() 62 "", StringUtils.capitalize("")); in testCapitalize() 64 "X", StringUtils.capitalize("x")); in testCapitalize() [all …]
|
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/ |
H A D | StringEscapeUtils.java | 143 { "\u0000", StringUtils.EMPTY }, 144 { "\u0001", StringUtils.EMPTY }, 145 { "\u0002", StringUtils.EMPTY }, 146 { "\u0003", StringUtils.EMPTY }, 147 { "\u0004", StringUtils.EMPTY }, 148 { "\u0005", StringUtils.EMPTY }, 149 { "\u0006", StringUtils.EMPTY }, 150 { "\u0007", StringUtils.EMPTY }, 151 { "\u0008", StringUtils.EMPTY }, 152 { "\u000b", StringUtils.EMPTY }, [all …]
|
/aosp_15_r20/external/sl4a/Common/src/org/apache/commons/codec/binary/ |
H A D | StringUtils.java | 33 public class StringUtils { class 48 return StringUtils.getBytesUnchecked(string, CharEncoding.ISO_8859_1); in getBytesIso8859_1() 64 return StringUtils.getBytesUnchecked(string, CharEncoding.US_ASCII); in getBytesUsAscii() 80 return StringUtils.getBytesUnchecked(string, CharEncoding.UTF_16); in getBytesUtf16() 96 return StringUtils.getBytesUnchecked(string, CharEncoding.UTF_16BE); in getBytesUtf16Be() 112 return StringUtils.getBytesUnchecked(string, CharEncoding.UTF_16LE); in getBytesUtf16Le() 128 return StringUtils.getBytesUnchecked(string, CharEncoding.UTF_8); in getBytesUtf8() 157 throw StringUtils.newIllegalStateException(charsetName, e); in getBytesUnchecked() 190 throw StringUtils.newIllegalStateException(charsetName, e); in newString() 205 return StringUtils.newString(bytes, CharEncoding.ISO_8859_1); in newStringIso8859_1() [all …]
|
/aosp_15_r20/external/aws-crt-java/src/test/java/software/amazon/awssdk/crt/test/ |
H A D | StringUtilsTest.java | 13 import software.amazon.awssdk.crt.utils.StringUtils; 22 assertEquals("one", StringUtils.join(";", alpns)); in testJoin() 24 assertEquals("one;two", StringUtils.join(";", alpns)); in testJoin() 29 assertEquals("", new String(StringUtils.base64Encode("".getBytes()))); in testBase64EncodeEmpty() 36 StringUtils.base64Encode(null); in testBase64EncodeNull() 44 assertEquals("Zm9vYmFy", new String(StringUtils.base64Encode("foobar".getBytes()))); in testBase64EncodeCaseFoobar() 53 byte[] output = StringUtils.base64Encode(test_input.toString().getBytes()); in testBase64EncodeExtremelyLargeString() 69 assertEquals(expected, new String(StringUtils.base64Encode(data))); in testBase64EncodeCaseAllValues() 74 assertEquals("", new String(StringUtils.base64Decode("".getBytes()))); in testBase64DecodeEmpty() 81 StringUtils.base64Decode(null); in testBase64DecodeNull() [all …]
|
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/time/ |
H A D | DurationFormatUtils.java | 27 import org.apache.commons.lang3.StringUtils; 185 String tmp = StringUtils.replaceOnce(duration, " 0 days", StringUtils.EMPTY); in formatDurationWords() 188 tmp = StringUtils.replaceOnce(duration, " 0 hours", StringUtils.EMPTY); in formatDurationWords() 191 tmp = StringUtils.replaceOnce(duration, " 0 minutes", StringUtils.EMPTY); in formatDurationWords() 194 duration = StringUtils.replaceOnce(tmp, " 0 seconds", StringUtils.EMPTY); in formatDurationWords() 204 String tmp = StringUtils.replaceOnce(duration, " 0 seconds", StringUtils.EMPTY); in formatDurationWords() 207 tmp = StringUtils.replaceOnce(duration, " 0 minutes", StringUtils.EMPTY); in formatDurationWords() 210 tmp = StringUtils.replaceOnce(duration, " 0 hours", StringUtils.EMPTY); in formatDurationWords() 212 duration = StringUtils.replaceOnce(tmp, " 0 days", StringUtils.EMPTY); in formatDurationWords() 219 duration = StringUtils.replaceOnce(duration, " 1 seconds", " 1 second"); in formatDurationWords() [all …]
|
/aosp_15_r20/external/apache-commons-lang/src/site/resources/release-notes/ |
H A D | RELEASE-NOTES-3.6.txt | 60 o The methods org.apache.commons.lang3.StringUtils.getJaroWinklerDistance and 61 org.apache.commons.lang3.StringUtils.getLevenshteinDistance 108 o LANG-1304: Add method in StringUtils to determine if string contains both 112 o LANG-1307: Add a method in StringUtils to extract only digits out of input 125 o LANG-1160: StringUtils#abbreviate should support 'custom ellipses' parameter. 126 o LANG-1293: Add StringUtils#isAllEmpty and #isAllBlank methods. 146 StringUtils. Thanks to Mark Dacek. 154 o LANG-1281: Javadoc of StringUtils.ordinalIndexOf is contradictory. 156 o LANG-1188: StringUtils#join(T...): warning: [unchecked] Possible heap 166 o LANG-1271: StringUtils#isAnyEmpty and #isAnyBlank should return false for an [all …]
|
H A D | RELEASE-NOTES-3.5.txt | 33 o Numerous extensions to org.apache.commons.lang3.StringUtils including 108 o LANG-787: Add method removeIgnoreCase(String, String) to StringUtils. Thanks 112 o LANG-1257: Add APIs StringUtils.wrapIfMissing(String, char|String). Thanks to 117 o LANG-1013: Add StringUtils.truncate(). Thanks to Thiago Andrade. 144 o LANG-1169: Add StringUtils methods to compare a string to multiple strings. 146 o LANG-1185: Add remove by regular expression methods in StringUtils. 147 o LANG-1139: Add replace by regular expression methods in StringUtils. 148 o LANG-1171: Add compare methods in StringUtils. 161 o LANG-701: StringUtils join with var args. Thanks to James Sawle. 169 o LANG-1119: Add rotate(string, int) method to StringUtils. Thanks to [all …]
|
H A D | RELEASE-NOTES-3.9.txt | 30 o LANG-1422: Add null-safe StringUtils.valueOf(char[]) to delegate to String.valueOf(char[]) 39 o LANG-1436: Consolidate the StringUtils equals and equalsIgnoreCase Javadoc and implementation 40 o (doc) Fix javadoc for 'startIndex' parameter of StringUtils.join() methods. GitHub PR … 112 o LANG-1391: Improve Javadoc for StringUtils.isAnyEmpty(null) Thanks to Sauro Matulli, Oleg Chubary… 115 o LANG-1238: Add RegexUtils class instead of overloading methods in StringUtils that take a regex t… 116 o LANG-1390: StringUtils.join() with support for List<?> with configurable start/end indices. Thank… 127 o LANG-1375: defaultString(final String str) in StringUtils to reuse defaultString(final String str… 181 o LANG-1358: Improve StringUtils#replace throughput Thanks to Stephane Landelle. 229 o The methods org.apache.commons.lang3.StringUtils.getJaroWinklerDistance and 230 org.apache.commons.lang3.StringUtils.getLevenshteinDistance [all …]
|
H A D | RELEASE-NOTES-3.7.txt | 57 o LANG-1358: Improve StringUtils#replace throughput Thanks to Stephane Landelle. 112 o The methods org.apache.commons.lang3.StringUtils.getJaroWinklerDistance and 113 org.apache.commons.lang3.StringUtils.getLevenshteinDistance 160 o LANG-1304: Add method in StringUtils to determine if string contains both 164 o LANG-1307: Add a method in StringUtils to extract only digits out of input 177 o LANG-1160: StringUtils#abbreviate should support 'custom ellipses' parameter. 178 o LANG-1293: Add StringUtils#isAllEmpty and #isAllBlank methods. 198 StringUtils. Thanks to Mark Dacek. 206 o LANG-1281: Javadoc of StringUtils.ordinalIndexOf is contradictory. 208 o LANG-1188: StringUtils#join(T...): warning: [unchecked] Possible heap [all …]
|
H A D | RELEASE-NOTES-3.8.1.txt | 89 o LANG-1391: Improve Javadoc for StringUtils.isAnyEmpty(null) Thanks to Sauro Matulli, Oleg Chubary… 92 o LANG-1238: Add RegexUtils class instead of overloading methods in StringUtils that take a regex t… 93 o LANG-1390: StringUtils.join() with support for List<?> with configurable start/end indices. Thank… 104 o LANG-1375: defaultString(final String str) in StringUtils to reuse defaultString(final String str… 158 o LANG-1358: Improve StringUtils#replace throughput Thanks to Stephane Landelle. 206 o The methods org.apache.commons.lang3.StringUtils.getJaroWinklerDistance and 207 org.apache.commons.lang3.StringUtils.getLevenshteinDistance 254 o LANG-1304: Add method in StringUtils to determine if string contains both 258 o LANG-1307: Add a method in StringUtils to extract only digits out of input 271 o LANG-1160: StringUtils#abbreviate should support 'custom ellipses' parameter. [all …]
|
H A D | RELEASE-NOTES-3.8.txt | 48 o LANG-1391: Improve Javadoc for StringUtils.isAnyEmpty(null) Thanks to Sauro Matulli, Oleg Chubary… 51 o LANG-1238: Add RegexUtils class instead of overloading methods in StringUtils that take a regex t… 52 o LANG-1390: StringUtils.join() with support for List<?> with configurable start/end indices. Thank… 63 o LANG-1375: defaultString(final String str) in StringUtils to reuse defaultString(final String str… 125 o LANG-1358: Improve StringUtils#replace throughput Thanks to Stephane Landelle. 173 o The methods org.apache.commons.lang3.StringUtils.getJaroWinklerDistance and 174 org.apache.commons.lang3.StringUtils.getLevenshteinDistance 221 o LANG-1304: Add method in StringUtils to determine if string contains both 225 o LANG-1307: Add a method in StringUtils to extract only digits out of input 238 o LANG-1160: StringUtils#abbreviate should support 'custom ellipses' parameter. [all …]
|
H A D | RELEASE-NOTES-3.2.1.txt | 78 o LANG-848: Added StringUtils.isBlank/isEmpty CharSequence... methods. 81 o LANG-795: StringUtils.toString(byte[], String) deprecated in favour of a new 82 StringUtils.toString(byte[], CharSet). Thanks to Aaron Digulla. 90 o LANG-875: Added appendIfMissing and prependIfMissing methods to StringUtils. 91 o LANG-870: Add StringUtils.LF and StringUtils.CR values. 101 o LANG-853: StringUtils join APIs for primitives. 102 o LANG-841: Add StringUtils API to call String.replaceAll in DOTALL a.k.a. 144 o LANG-844: Fix examples contained in javadoc of StringUtils.center methods. 154 o LANG-813: StringUtils.equalsIgnoreCase doesn't check string reference 156 o LANG-810: StringUtils.join() endIndex, bugged for loop. [all …]
|
H A D | RELEASE-NOTES-3.2.txt | 66 o LANG-848: Added StringUtils.isBlank/isEmpty CharSequence... methods. 69 o LANG-795: StringUtils.toString(byte[], String) deprecated in favour of a new 70 StringUtils.toString(byte[], CharSet). Thanks to Aaron Digulla. 78 o LANG-875: Added appendIfMissing and prependIfMissing methods to StringUtils. 79 o LANG-870: Add StringUtils.LF and StringUtils.CR values. 89 o LANG-853: StringUtils join APIs for primitives. 90 o LANG-841: Add StringUtils API to call String.replaceAll in DOTALL a.k.a. 132 o LANG-844: Fix examples contained in javadoc of StringUtils.center methods. 142 o LANG-813: StringUtils.equalsIgnoreCase doesn't check string reference 144 o LANG-810: StringUtils.join() endIndex, bugged for loop. [all …]
|
/aosp_15_r20/external/apache-commons-lang/ |
H A D | RELEASE-NOTES.txt | 28 o LANG-1535: Add StringUtils.containsAnyIgnoreCase(CharSequence, CharSequence...). Thanks to Gary G… 36 o Add StringUtils.substringBefore(String, int). Thanks to Gary Gregory. 49 o LANG-1579: Improve StringUtils.stripAccents conversion of remaining accents. Thanks to XenoAmess. 50 o LANG-1606: StringUtils.countMatches - clarify Javadoc. Thanks to Rustem Galiev. 59 o LANG-1610: Fix StringUtils.unwrap throws StringIndexOutOfBoundsException #636. Thanks to Tony Lia… 63 o LANG-1620: Refine StringUtils.lastIndexOfIgnoreCase #664. Thanks to Arturo Bernal. 64 o LANG-1619: Refine StringUtils.abbreviate #663. Thanks to Arturo Bernal. 65 o LANG-1584: Refine StringUtils.isNumericSpace #573. Thanks to Arturo Bernal. 66 o LANG-1580: Refine StringUtils.deleteWhitespace #569. Thanks to Arturo Bernal. 155 o Add org.apache.commons.lang3.StringUtils.substringAfter(String, int). [all …]
|