Add indexOf() & lastIndexOf() methods for Whitespace and Non-whitespae to
StringUtils
-------------------------------------------------------------------------------------
Key: LANG-671
URL: https://issues.apache.org/jira/browse/LANG-671
Project: Commons Lang
Issue Type: New Feature
Components: lang.*
Reporter: Niall Pemberton
Whitespace methods:
{code}
public static int indexOfWhitespace(CharSequence str, int startPos)
public static int lastIndexOfWhitespace(CharSequence str, int startPos)
{code}
Non-whitespace methods:
{code}
public static int indexOfNonWhitespace(CharSequence str, int startPos)
public static int lastIndexOfNonWhitespace(CharSequence str, int startPos)
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.