D Language
strings
Zoeken…
Opmerkingen
- Strings in D zijn onveranderlijk; gebruik
.dup
om een veranderlijkechar
array te maken als je ter.dup
wilt bewerken.
Een string omkeren
string
is gedefinieerd als alias string = immutable(char)[];
: dus moet je dup
gebruiken om een veranderlijke char array te maken, voordat deze kan worden teruggedraaid:
import std.stdio;
import std.string;
int main() {
string x = "Hello world!";
char[] x_rev = x.dup.reverse;
writeln(x_rev); // !dlrow olleH
return 0;
}
Test op een lege of nulstring
Lege string
Lege string is niet null maar heeft lengte nul:
string emptyString = "";
// an empty string is not null...
assert(emptyString !is null);
// ... but it has zero lenght
assert(emptyString.length == 0);
Null string
string nullString = null;
een nulstring is nul (De Lapalisse)
assert(nullString is null);
maar in tegenstelling tot C # genereert de lengte van een null-string geen fout:
assert(nullString.length == 0);
assert(nullString.empty);
Test op leeg of nul
if (emptyOrNullString.length == 0) {
}
// or
if (emptyOrNullString.length) {
}
// or
import std.array;
if (emptyOrNullString.empty) {
}
Test op nul
if (nullString is null) {
}
Referenties
Converteer string naar ubyte [] en vice versa
String naar onveranderlijke ubyte[]
string s = "unogatto";
immutable(ubyte[]) ustr = cast(immutable(ubyte)[])s;
assert(typeof(ustr).stringof == "immutable(ubyte[])");
assert(ustr.length == 8);
assert(ustr[0] == 0x75); //u
assert(ustr[1] == 0x6e); //n
assert(ustr[2] == 0x6f); //o
assert(ustr[3] == 0x67); //g
assert(ustr[7] == 0x6f); //o
String naar ubyte[]
string s = "unogatto";
ubyte[] mustr = cast(ubyte[])s;
assert(typeof(mustr).stringof == "ubyte[]");
assert(mustr.length == 8);
assert(mustr[0] == 0x75);
assert(mustr[1] == 0x6e);
assert(mustr[2] == 0x6f);
assert(mustr[3] == 0x67);
assert(mustr[7] == 0x6f);
ubyte[]
om te ubyte[]
ubyte[] stream = [ 0x75, 0x6e, 0x6f, 0x67];
string us = cast(string)stream;
assert(us == "unog");
Referenties
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow