-
strings
Does anyone know the best way to take a string as char, like "hello world"
or whatever, and print it out, where there are no characters / letters are
repeated? The string thus being shorter somewhat, but keeping the whitespaces?
-
Re: strings
you can allocate a new array that has the same size of the original
string, and copy the characters from the original string to the array in
a loop. Before copying each character, make sure that it's not identical
to the previously copied character (if it is, skip it and proceed to the
next one).
Danny
kpc@floweb.net wrote:
>
> Does anyone know the best way to take a string as char, like "hello world"
> or whatever, and print it out, where there are no characters / letters are
> repeated? The string thus being shorter somewhat, but keeping the whitespaces?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|