Hi Justin, == Quote from Justin Spahr-Summers ([email protected])'s article > "string" is actually an alias for "immutable(char)[]" (and similarly for > the other string types), so its contents are not modifiable, though its > length can be adjusted and contents appended. If you need to be able to > modify the characters, just use char[] instead. You can then use the > .idup property to get a string afterward.
Thanks for the clarification! Regards, Ben
