Added split() for splitting a string up based on a separator character.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@171 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: StringUtil.java,v 1.6 2001/07/12 02:43:43 mdb Exp $
|
// $Id: StringUtil.java,v 1.7 2001/07/12 23:29:16 mdb Exp $
|
||||||
|
|
||||||
package com.samskivert.util;
|
package com.samskivert.util;
|
||||||
|
|
||||||
@@ -202,5 +202,19 @@ public class StringUtil
|
|||||||
return vals;
|
return vals;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Splits the supplied string into components based on the specified
|
||||||
|
* separator character.
|
||||||
|
*/
|
||||||
|
public static String[] split (String source, String sep)
|
||||||
|
{
|
||||||
|
StringTokenizer tok = new StringTokenizer(source, sep);
|
||||||
|
String[] tokens = new String[tok.countTokens()];
|
||||||
|
for (int i = 0; tok.hasMoreTokens(); i++) {
|
||||||
|
tokens[i] = tok.nextToken();
|
||||||
|
}
|
||||||
|
return tokens;
|
||||||
|
}
|
||||||
|
|
||||||
private final static String XLATE = "0123456789abcdef";
|
private final static String XLATE = "0123456789abcdef";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user