You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Pascal Schumacher (JIRA)" <ji...@apache.org> on 2016/05/28 16:29:12 UTC

[jira] [Updated] (LANG-1205) NumberUtils.createNumber() behaves inconsistently with NumberUtils.isNumber()

     [ https://issues.apache.org/jira/browse/LANG-1205?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pascal Schumacher updated LANG-1205:
------------------------------------
    Fix Version/s: 3.5

> NumberUtils.createNumber() behaves inconsistently with NumberUtils.isNumber()
> -----------------------------------------------------------------------------
>
>                 Key: LANG-1205
>                 URL: https://issues.apache.org/jira/browse/LANG-1205
>             Project: Commons Lang
>          Issue Type: Bug
>          Components: lang.math.*
>    Affects Versions: 3.1
>            Reporter: Daniel Brown
>            Assignee: Charles Honton
>             Fix For: 3.5
>
>
> The {{NumberUtils.createNumber()}} method fails to check for multiple trailing characters, and as a result, it returns a value even though {{NumberUtils.isNumber()}} indicates that it should not.  For example:
> {code}
> boolean isNumber = NumberUtils.isNumber("81.5514DD");   // returns false
> Number numValue = NumberUtils.createNumber("81.5514DD");  // returns a Double value, 81.5514
> {code}
> I would expect the {{createNumber()}} method to throw a {{NumberFormatException}} in this case.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)