D - String class
- Ant <Ant_member pathlink.com> Nov 01 2003
- Ant <Ant_member pathlink.com> Nov 01 2003
- "Sean L. Palmer" <palmer.sean verizon.net> Nov 01 2003
- Ant <Ant_member pathlink.com> Nov 02 2003
- Ant <Ant_member pathlink.com> Nov 03 2003
- "Vathix" <vathix dprogramming.com> Nov 03 2003
- Ant <Ant_member pathlink.com> Nov 03 2003
- "Ben Hinkle" <bhinkle4 juno.com> Nov 03 2003
- "Vathix" <vathix dprogramming.com> Nov 03 2003
I believe once I saw a String class submited on this group to be added to phobos (seems that it never made it - I think it was from Burton Radons). (A standard String class should be available) Any one has that String class (or another that can be shared) or remember how to get it? Thanks Ant
Nov 01 2003
In article <bo0s52$cqn$1 digitaldaemon.com>, Ant says...I believe once I saw a String class submited on this group to be added to phobos (seems that it never made it - I think it was from Burton Radons). (A standard String class should be available)
Probably what I saw was D/6204 (seems nothing from there got into phobos) anybody has a String class to share with us? Ant
Nov 01 2003
I think it would be super great if char[] were powerful enough that we don't need any string class. Most of the basics of C strings, such as strcpy, strcat, strlen, are already handled by char[] and slices of char[], and array concatenation ~. Many other basic string functions are actually useful on other kinds of arrays as well. Array search, array comparison. So there's no need to make such functions specific to char[] only. There are plenty of issues regarding Unicode encoding that just don't fit well with char[]. case-sensitive or locale-specific comparisons, "indexing" of UTF-8 encoded strings, etc. And we do need some place to hang functions that work on strings, something that hopefully will eliminate the need for "str" prefixes on the function names. Sean "Ant" <Ant_member pathlink.com> wrote in message news:bo0tas$ej4$1 digitaldaemon.com...In article <bo0s52$cqn$1 digitaldaemon.com>, Ant says...I believe once I saw a String class submited on this group to be added to phobos (seems that it never made it - I think it was from Burton Radons). (A standard String class should be available)
Probably what I saw was D/6204 (seems nothing from there got into phobos) anybody has a String class to share with us? Ant
Nov 01 2003
In article <bo178s$s3p$1 digitaldaemon.com>, Sean L. Palmer says...I think it would be super great if char[] were powerful enough that we don't need any string class.
The main problem is that char[] is not an object.There are plenty of issues regarding Unicode encoding that just don't fit well with char[]. case-sensitive or locale-specific comparisons, "indexing" of UTF-8 encoded strings, etc. And we do need some place to hang functions that work on strings,
How about a String class? ;) Ant
Nov 02 2003
anybody has a String class to share with us?
I just looked at STL. (I used C++ on DOS, not even on windows 3.0) it seems that it contains a string thing so I guess we are all waiting for the big D lib, ok, let's wait. Ant
Nov 03 2003
In article <bo6a9k$1vag$1 digitaldaemon.com>, Vathix says...I made this a few weeks ago.
Looks great! thank you. Ant
Nov 03 2003
Looks interesting. If I started using this in my own code what advantages would it have over using string.d and schar[] where schar is char, wchar or dchar? I haven't been following the pros and cons of String vs char[] aside from the UTF-n indexing problem. thanks, -Ben "Vathix" <vathix dprogramming.com> wrote in message news:bo6a9k$1vag$1 digitaldaemon.com...I made this a few weeks ago.
Nov 03 2003
The String class has a few advantages like the reserve member to reserve so many bytes to avoid reallocations. You can append another String, char[], char or even int to it. The silce operator (with or without parameters) returns a char[] so it can be easily used with other char[] string functions. The toStringz member adds the null byte to the reserve so calling it several times won't hurt any. There are a few bad things, like the functions that return several new String objects such as split(), but I don't really think it's any worse than other languages' String classes. I wrote this code just for something to do, since people have been wanting a String and it didn't look like anyone was actually making it. I still like char[], I think slices are really cool. "Ben Hinkle" <bhinkle4 juno.com> wrote in message news:bo6osb$2kf3$1 digitaldaemon.com...Looks interesting. If I started using this in my own code what advantages would it have over using string.d and schar[] where schar is char, wchar
dchar? I haven't been following the pros and cons of String vs char[]
from the UTF-n indexing problem. thanks, -Ben "Vathix" <vathix dprogramming.com> wrote in message news:bo6a9k$1vag$1 digitaldaemon.com...I made this a few weeks ago.
Nov 03 2003









Ant <Ant_member pathlink.com> 