You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Cheng Pan (Jira)" <ji...@apache.org> on 2022/12/08 09:43:00 UTC

[jira] [Commented] (LANG-1463) StringUtils abbreviate returns String of length greater than maxWidth

    [ https://issues.apache.org/jira/browse/LANG-1463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17644699#comment-17644699 ] 

Cheng Pan commented on LANG-1463:
---------------------------------

We suffer this issue recently, and it actually affects 3.6~3.9, would you please update the ticket to reflect that?

> StringUtils abbreviate returns String of length greater than maxWidth
> ---------------------------------------------------------------------
>
>                 Key: LANG-1463
>                 URL: https://issues.apache.org/jira/browse/LANG-1463
>             Project: Commons Lang
>          Issue Type: Bug
>          Components: lang.*
>    Affects Versions: 3.9
>            Reporter: Thomas Wessendorf
>            Priority: Minor
>             Fix For: 3.10
>
>
> In the JavaDoc of StringUtils.abbreviate(final String str, final String abbrevMarker, final int maxWidth) is written, that the method in no case will return a String of length greater than maxWidth. This doesn't hold, if abbrevMarker is an empty string.
> Expected behaviour:
> abbreviate("much too long text", "", 13).equals("much too long")
>  
> Actual behaviour:
> abbreviate("much too long text", "", 13).equals("much too long text")



--
This message was sent by Atlassian Jira
(v8.20.10#820010)