add indexesOf methods to StringUtils
------------------------------------
Key: LANG-615
URL: https://issues.apache.org/jira/browse/LANG-615
Project: Commons Lang
Issue Type: New Feature
Components: lang.*
Reporter: Rocky D. Pulley
Priority: Minor
Adding methods to StringUtils which support returning an array of indexes of a
search string.
The following code would return int [0, 18, 45, 57]:
{code}
String s = "This is a test of this string which contains this a lot. this";
int[] idxs = indexesOfIgnoreCase(s, "this");
for (int i=0; i<idxs.length; i++)
{
System.out.println("Pos: " + idxs[i]);
}
{code}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira