[
https://issues.apache.org/jira/browse/LANG-1299?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Duncan Jones updated LANG-1299:
-------------------------------
Description:
Java 7 doesn't offer a method for converting a string to an array of code
points. This might be something we could add to {{StringUtils}}.
{code:java}
int[] codePoints = StringUtils.toCodePointArray(someString);
{code}
was:
Java 7 doesn't offer a method for converting a string to an array of code
points. This might be something we could add to {{StringUtils}}.
{code:java}
int codePoints = StringUtils.toCodePointArray(someString);
{code}
> Add method for converting string to an array of code points
> -----------------------------------------------------------
>
> Key: LANG-1299
> URL: https://issues.apache.org/jira/browse/LANG-1299
> Project: Commons Lang
> Issue Type: Improvement
> Components: lang.*
> Affects Versions: 3.5
> Reporter: Duncan Jones
> Priority: Minor
>
> Java 7 doesn't offer a method for converting a string to an array of code
> points. This might be something we could add to {{StringUtils}}.
> {code:java}
> int[] codePoints = StringUtils.toCodePointArray(someString);
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)