Re: String and whitespace problem
From: Sharp (Sharp_at_SharpAddress.com)
Date: 02/21/05
- Next message: Matthias Fraass: "Re: Deprecated Classes"
- Previous message: Roland: "Re: Javax.mail / smtp hostquestion"
- In reply to: Sharp: "String and whitespace problem"
- Next in thread: Roland: "Re: String and whitespace problem"
- Reply: Roland: "Re: String and whitespace problem"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 21 Feb 2005 08:43:26 GMT
> Hi
>
> I have a sting that contains long stretches of whitespaces between
> characters.
>
> For example:
>
> String str = " A B C
> ";
>
> I would like to include all the characters including the white spaces into
a
> data structure (e.g., ArrayList).
> The code I have written is something like this:
>
> List list = new ArrayList();
> for (int i=0; i<str.length(); i++)
> {
> list.add(str.charAt(i));
> }
>
> Unfortunately it just adds "ABC" into the array list.
> It seems charAt() method ignores whitespaces,
> But the documentation doesn't mention anything about whitespaces.
> Iam happy to add another character in place of the whitespace,
> So I tried using the replaceAll() method from the string class, but that
> didn't work.
>
> Any advice will be appreciated.
>
> Cheers
> Sharp
I forgot to mention that Iam wrapping the characters using the Character
class before adding it into the array.
For example:
Character ch = new Character(str.charAt(i));
list.add(ch);
Again any help will be appreciated.
Cheers
Sharp
- Next message: Matthias Fraass: "Re: Deprecated Classes"
- Previous message: Roland: "Re: Javax.mail / smtp hostquestion"
- In reply to: Sharp: "String and whitespace problem"
- Next in thread: Roland: "Re: String and whitespace problem"
- Reply: Roland: "Re: String and whitespace problem"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|