diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 040be6a1d..b6b325953 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -22,6 +22,7 @@
Leading spaces on a new line are stripped. * Trailing spaces are not stripped.
* - *- * WordUtils.wrap(null, *) = null - * WordUtils.wrap("", *) = "" - *+ *
input | + *wrapLenght | + *result | + *
---|---|---|
null | + ** | + *null | + *
"" | + ** | + *"" | + *
"Here is one line of text that is going to be wrapped after 20 columns." | + *20 | + *"Here is one line of\ntext that is going\nto be wrapped after\n20 columns." | + *
"Click here to jump to the commons website - http://commons.apache.org" | + *20 | + *"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apache.org" | + *
"Click here, http://commons.apache.org, to jump to the commons website" | + *20 | + *"Click here,\nhttp://commons.apache.org,\nto jump to the\ncommons website" | + *
Leading spaces on a new line are stripped. * Trailing spaces are not stripped.
- * - *- * WordUtils.wrap(null, *, *, *) = null - * WordUtils.wrap("", *, *, *) = "" - *+ * + *
input | + *wrapLenght | + *newLineString | + *wrapLongWords | + *result | + *
---|---|---|---|---|
null | + ** | + ** | + *true/false | + *null | + *
"" | + ** | + ** | + *true/false | + *"" | + *
"Here is one line of text that is going to be wrapped after 20 columns." | + *20 | + *"\n" | + *true/false | + *"Here is one line of\ntext that is going\nto be wrapped after\n20 columns." | + *
"Here is one line of text that is going to be wrapped after 20 columns." | + *20 | + *"<br />" | + *true/false | + *"Here is one line of<br />text that is going<br />to be wrapped after<br />20 columns." | + *
"Here is one line of text that is going to be wrapped after 20 columns." | + *20 | + *null | + *true/false | + *"Here is one line of" + systemNewLine + "text that is going" + systemNewLine + "to be wrapped after" + systemNewLine + "20 columns." | + *
"Click here to jump to the commons website - http://commons.apache.org" | + *20 | + *"\n" | + *false | + *"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apache.org" | + *
"Click here to jump to the commons website - http://commons.apache.org" | + *20 | + *"\n" | + *true | + *"Click here to jump\nto the commons\nwebsite -\nhttp://commons.apach\ne.org" | + *