You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Henri Yandell (JIRA)" <ji...@apache.org> on 2009/12/24 07:53:30 UTC

[jira] Updated: (LANG-426) String splitting with escaped delimiter

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

Henri Yandell updated LANG-426:
-------------------------------

    Fix Version/s:     (was: 3.0)
                   3.x

> String splitting with escaped delimiter
> ---------------------------------------
>
>                 Key: LANG-426
>                 URL: https://issues.apache.org/jira/browse/LANG-426
>             Project: Commons Lang
>          Issue Type: New Feature
>          Components: lang.text.*
>    Affects Versions: 2.4
>            Reporter: Emmanuel Bourg
>            Priority: Minor
>             Fix For: 3.x
>
>
> In Commons Configuration we use a custom split method that supports the concept of an escaped delimiter, that may be nice if this was available in Commons Lang (as a method in StringUtils, or as a setting in StrTokenizer).
> Example:
> {code}
> a,b\,c,d    ->    ["a", "b,c", "d"]
> {code}
> Here is the code of the method:
> {code:java}
> public static List<String> split(String s, char delimiter)
> {
>     if (s == null)
>     {
>         return new ArrayList<String>();
>     }
>     List<String> list = new ArrayList<String>();
>     StringBuilder token = new StringBuilder();
>     int begin = 0;
>     boolean inEscape = false;
>     while (begin < s.length())
>     {
>         char c = s.charAt(begin);
>         if (inEscape)
>         {
>             // last character was the escape marker
>             // can current character be escaped?
>             if (c != delimiter && c != LIST_ESC_CHAR)
>             {
>                 // no, also add escape character
>                 token.append(LIST_ESC_CHAR);
>             }
>             token.append(c);
>             inEscape = false;
>         }
>         else
>         {
>             if (c == delimiter)
>             {
>                 // found a list delimiter -> add token and reset buffer
>                 list.add(token.toString().trim());
>                 token = new StringBuilder();
>             }
>             else if (c == LIST_ESC_CHAR)
>             {
>                 // eventually escape next character
>                 inEscape = true;
>             }
>             else
>             {
>                 token.append(c);
>             }
>         }
>         begin++;
>     }
>     // Trailing delimiter?
>     if (inEscape)
>     {
>         token.append(LIST_ESC_CHAR);
>     }
>     // Add last token
>     list.add(token.toString().trim());
>     return list;
> }
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.