|
37 | 37 | * {@code null} safe. |
38 | 38 | * |
39 | 39 | * <ul> |
40 | | - * <li><b>IsEmpty/IsBlank</b> |
| 40 | + * <li><strong>IsEmpty/IsBlank</strong> |
41 | 41 | * - checks if a String contains text</li> |
42 | | - * <li><b>Trim/Strip</b> |
| 42 | + * <li><strong>Trim/Strip</strong> |
43 | 43 | * - removes leading and trailing whitespace</li> |
44 | | - * <li><b>Equals/Compare</b> |
| 44 | + * <li><strong>Equals/Compare</strong> |
45 | 45 | * - compares two strings in a null-safe manner</li> |
46 | | - * <li><b>startsWith</b> |
| 46 | + * <li><strong>startsWith</strong> |
47 | 47 | * - check if a String starts with a prefix in a null-safe manner</li> |
48 | | - * <li><b>endsWith</b> |
| 48 | + * <li><strong>endsWith</strong> |
49 | 49 | * - check if a String ends with a suffix in a null-safe manner</li> |
50 | | - * <li><b>IndexOf/LastIndexOf/Contains</b> |
| 50 | + * <li><strong>IndexOf/LastIndexOf/Contains</strong> |
51 | 51 | * - null-safe index-of checks |
52 | | - * <li><b>IndexOfAny/LastIndexOfAny/IndexOfAnyBut/LastIndexOfAnyBut</b> |
| 52 | + * <li><strong>IndexOfAny/LastIndexOfAny/IndexOfAnyBut/LastIndexOfAnyBut</strong> |
53 | 53 | * - index-of any of a set of Strings</li> |
54 | | - * <li><b>ContainsOnly/ContainsNone/ContainsAny</b> |
| 54 | + * <li><strong>ContainsOnly/ContainsNone/ContainsAny</strong> |
55 | 55 | * - checks if String contains only/none/any of these characters</li> |
56 | | - * <li><b>Substring/Left/Right/Mid</b> |
| 56 | + * <li><strong>Substring/Left/Right/Mid</strong> |
57 | 57 | * - null-safe substring extractions</li> |
58 | | - * <li><b>SubstringBefore/SubstringAfter/SubstringBetween</b> |
| 58 | + * <li><strong>SubstringBefore/SubstringAfter/SubstringBetween</strong> |
59 | 59 | * - substring extraction relative to other strings</li> |
60 | | - * <li><b>Split/Join</b> |
| 60 | + * <li><strong>Split/Join</strong> |
61 | 61 | * - splits a String into an array of substrings and vice versa</li> |
62 | | - * <li><b>Remove/Delete</b> |
| 62 | + * <li><strong>Remove/Delete</strong> |
63 | 63 | * - removes part of a String</li> |
64 | | - * <li><b>Replace/Overlay</b> |
| 64 | + * <li><strong>Replace/Overlay</strong> |
65 | 65 | * - Searches a String and replaces one String with another</li> |
66 | | - * <li><b>Chomp/Chop</b> |
| 66 | + * <li><strong>Chomp/Chop</strong> |
67 | 67 | * - removes the last part of a String</li> |
68 | | - * <li><b>AppendIfMissing</b> |
| 68 | + * <li><strong>AppendIfMissing</strong> |
69 | 69 | * - appends a suffix to the end of the String if not present</li> |
70 | | - * <li><b>PrependIfMissing</b> |
| 70 | + * <li><strong>PrependIfMissing</strong> |
71 | 71 | * - prepends a prefix to the start of the String if not present</li> |
72 | | - * <li><b>LeftPad/RightPad/Center/Repeat</b> |
| 72 | + * <li><strong>LeftPad/RightPad/Center/Repeat</strong> |
73 | 73 | * - pads a String</li> |
74 | | - * <li><b>UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize</b> |
| 74 | + * <li><strong>UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize</strong> |
75 | 75 | * - changes the case of a String</li> |
76 | | - * <li><b>CountMatches</b> |
| 76 | + * <li><strong>CountMatches</strong> |
77 | 77 | * - counts the number of occurrences of one String in another</li> |
78 | | - * <li><b>IsAlpha/IsNumeric/IsWhitespace/IsAsciiPrintable</b> |
| 78 | + * <li><strong>IsAlpha/IsNumeric/IsWhitespace/IsAsciiPrintable</strong> |
79 | 79 | * - checks the characters in a String</li> |
80 | | - * <li><b>DefaultString</b> |
| 80 | + * <li><strong>DefaultString</strong> |
81 | 81 | * - protects against a null input String</li> |
82 | | - * <li><b>Rotate</b> |
| 82 | + * <li><strong>Rotate</strong> |
83 | 83 | * - rotate (circular shift) a String</li> |
84 | | - * <li><b>Reverse/ReverseDelimited</b> |
| 84 | + * <li><strong>Reverse/ReverseDelimited</strong> |
85 | 85 | * - reverses a String</li> |
86 | | - * <li><b>Abbreviate</b> |
| 86 | + * <li><strong>Abbreviate</strong> |
87 | 87 | * - abbreviates a string using ellipses or another given String</li> |
88 | | - * <li><b>Difference</b> |
| 88 | + * <li><strong>Difference</strong> |
89 | 89 | * - compares Strings and reports on their differences</li> |
90 | | - * <li><b>LevenshteinDistance</b> |
| 90 | + * <li><strong>LevenshteinDistance</strong> |
91 | 91 | * - the number of changes needed to change one String into another</li> |
92 | 92 | * </ul> |
93 | 93 | * |
@@ -5418,7 +5418,7 @@ public static String normalizeSpace(final String str) { |
5418 | 5418 | /** |
5419 | 5419 | * Finds the n-th index within a CharSequence, handling {@code null}. |
5420 | 5420 | * This method uses {@link String#indexOf(String)} if possible. |
5421 | | - * <p><b>Note:</b> The code starts looking for a match at the start of the target, |
| 5421 | + * <p><strong>Note:</strong> The code starts looking for a match at the start of the target, |
5422 | 5422 | * incrementing the starting index by one after each successful match |
5423 | 5423 | * (unless {@code searchStr} is an empty string in which case the position |
5424 | 5424 | * is never incremented and {@code 0} is returned immediately). |
|
0 commit comments