GitHub user thiagoh opened a pull request:

    https://github.com/apache/commons-lang/pull/137

    Adding to StringUtils truncate method and test cases

    Adding the following methods from `StringUtils`:
    * `public static String truncate(final String str, final int maxWidth)`
    * `public static String truncate(final String str, int offset, final int 
maxWidth)`
    
    For example 
    ```
    StringUtils.truncate("abcdefg", 4) = "abcd"
    StringUtils.truncate("abcdefg", 6) = "abcdef"
    StringUtils.truncate("abcdefg", 7) = "abcdefg"
    StringUtils.truncate("abcdefg", 8) = "abcdefg"
    
    StringUtils.truncate("abcdefghijklmno", -1, 10) = "abcdefghij"
    StringUtils.truncate("abcdefghijklmno", 0, 10) = "abcdefghij"
    StringUtils.truncate("abcdefghijklmno", Integer.MIN_VALUE, 10) = 
"abcdefghij"
    StringUtils.truncate("abcdefghijklmno", Integer.MIN_VALUE, 
Integer.MAX_VALUE) = "abcdefghijklmno"
    StringUtils.truncate("abcdefghijklmno", 0, Integer.MAX_VALUE) = 
"abcdefghijklmno"
    StringUtils.truncate("abcdefghijklmno", 1, 10) = "bcdefghijk"
    StringUtils.truncate("abcdefghijklmno", 2, 10) = "cdefghijkl"
    StringUtils.truncate("abcdefghijklmno", 3, 10) = "defghijklm"
    StringUtils.truncate("abcdefghijklmno", 4, 10) = "efghijklmn"
    StringUtils.truncate("abcdefghijklmno", 5, 10) = "fghijklmno"
    StringUtils.truncate("abcdefghijklmno", 5, 5) = "fghij"
    StringUtils.truncate("abcdefghijklmno", 5, 3) = "fgh"
    StringUtils.truncate("abcdefghijklmno", 10, 3) = "klm"
    StringUtils.truncate("abcdefghijklmno", 10, Integer.MAX_VALUE) = "klmno"
    StringUtils.truncate("abcdefghijklmno", 13, 1) = "n"
    StringUtils.truncate("abcdefghijklmno", 13, Integer.MAX_VALUE) = "no"
    StringUtils.truncate("abcdefghijklmno", 14, 1) = "o"
    StringUtils.truncate("abcdefghijklmno", 14, Integer.MAX_VALUE) = "o"
    ```
    
    @britter I'm rebasing this PR because of my old PR #24. Could you check it? 
Thanks


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/thiagoh/commons-lang branch-truncate

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/commons-lang/pull/137.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #137
    
----
commit f644d6a499b2011c7505c1d9002d6b94d3a86e10
Author: Thiago Andrade <[email protected]>
Date:   2016-04-24T17:34:48Z

    adding truncate method to StringUtils

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to