Re: subStrings separated by...
Re: subStrings separated by...
- Subject: Re: subStrings separated by...
- From: David Elsner <email@hidden>
- Date: Thu, 18 Dec 2003 08:57:51 +1100
Try using StringTokenizer
example:
final String d = " /`1234567890-_+=~!@#$%^&*()[]{};':\",.<>?"; // or
in your case just "-"
StringTokenizer st = new StringTokenizer(line, d); // line is your
string you want to split
while (st.hasMoreTokens())
{
String str = st.nextToken();
}
Dave
On Thursday, December 18, 2003, at 08:34 AM, Ricardo Strausz wrote:
Hola!
This most be an easy one (for someone who knows Java);
in a validateAtribute(String value) method of an EOGenericRecord's
child, I want to check if the value have the form ABC-123456-XYZ (3
letters, dash, 6 numbers, dash, 3 alphanumeric characters). In Obj-C,
while using NSString, you simply use
NSArray anArrayOfStrings = [value componentsSeparatedByString:@"-"];
and then parse each of the 3 elements in the array.
java.lang.String does not seem to have such a method (nor any that
returns an array or vector).
Any idea on how to acomplish this.
Gracias,
Dino
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.