Hi Gurpreet,
        If what I understand is correct from your question, you can use split function 
the same way as you use String Token...following is sample snap shot

          String str = "botherouioero:and:foroffo:mar:ssod:slave";
        String[] arr = str.split(":", 9);
        System.out.println("length of arr[] is:" + arr.length);
        for (int i = 0; i < arr.length; i++) {
            System.out.println("value is :" + arr[i]);
        }
        String[] ar = str.split("o", 8);
        System.out.println("length of arr[] is:" + ar.length);
        for (int i = 0; i < ar.length; i++) {
            System.out.println("value is :" + ar[i]);
        }
Where the number 9 and 8 denotes number of occurences you want to consider after which 
it will be treated as whole single string and will be included into your String Array.

Hope this help,

-Ram




-----Original Message-----
From: Gurpreet Dhanoa [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 19, 2003 6:19 AM
To: Struts Users Mailing List; [EMAIL PROTECTED]
Subject: Tokens


hi All

 Can somebody explain small code snap shot of using Tokens. AS i am trying
to use it in one of my application. but due to some unknown reason it is not
working. I may be doing something wrong.


Any help will be appreciated


Regards
GAry


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to