Whether or not to replace invalid UTF with replacementDchar
Iterate an input range of characters by char, wchar, or dchar. These aliases simply forward to byUTF with the corresponding C argument.
Exception thrown on errors in std.utf functions.
Iterate a range of char, wchar, or dchars by code unit.
Returns the number of code units that are required to encode the code point c when C is the character type used to encode it.
Returns the number of code units that are required to encode str in a string whose character type is C. This is particularly useful when slicing one string with the length of another and the two string types use different character types.
Returns the total number of code points encoded in str.
Decodes and returns the code point starting at str[index]. index is advanced to one past the decoded code point. If the code point is not well-formed, then a UTFException is thrown and index remains unchanged.
decodeBack is a variant of decode which specifically decodes the last code point. Unlike decode, decodeBack accepts any bidirectional range of code units (rather than just a string or random access range). It also takes the range by ref and pops off the elements as it decodes them. If numCodeUnits is passed in, it gets set to the number of code units which were in the code point which was decoded.
decodeFront is a variant of decode which specifically decodes the first code point. Unlike decode, decodeFront accepts any input range of code units (rather than just a string or random access range). It also takes the range by ref and pops off the elements as it decodes them. If numCodeUnits is passed in, it gets set to the number of code units which were in the code point which was decoded.
Encodes c into the static array, buf, and returns the actual length of the encoded character (a number between 1 and 4 for char[4] buffers and a number between 1 and 2 for wchar[2] buffers).
Encodes c in str's encoding and appends it to str.
Checks if a single character forms a valid code point.
Check whether the given Unicode code point is valid.
Calculate the length of the UTF sequence starting at index in str.
Calculate the length of the UTF sequence ending one code unit before index in str.
Given index into str and assuming that index is at the start of a UTF sequence, toUCSindex determines the number of UCS characters up to index. So, index is the index of a code unit at the beginning of a code point, and the return value is how many code points into the string that that code point is.
Encodes the elements of s to UTF-16 and returns a newly GC allocated wstring of the elements.
toUTF16z is a convenience function for toUTFz!(const(wchar)*).
Encodes the elements of s to UTF-32 and returns a newly GC allocated dstring of the elements.
Encodes the elements of s to UTF-8 and returns a newly allocated string of the elements.
Given a UCS index n into str, returns the UTF index. So, n is how many code points into the string the code point is, and the array index of the code unit is returned.
Checks to see if str is well-formed unicode or not.
Iterate an input range of characters by char type C by encoding the elements of the range.
Returns a C-style zero-terminated string equivalent to str. str must not contain embedded '\0''s as any C function will treat the first '\0' that it sees as the end of the string. If str.empty is true, then a string containing only '\0' is returned.
Inserted in place of invalid UTF sequences.
Encode and decode UTF-8, UTF-16 and UTF-32 strings.
UTF character support is restricted to '\u0000' <= character <= '\U0010FFFF'.