19 OF_ASSUME_NONNULL_BEGIN
33 - (void)setCharacter: (of_unichar_t)character
34 atIndex: (
size_t)index;
41 - (void)appendString: (
OFString*)string;
49 - (void)appendCharacters: (of_unichar_t*)characters
50 length: (
size_t)length;
57 - (void)appendUTF8String: (const
char*)UTF8String;
66 - (void)appendUTF8String: (const
char*)UTF8String
67 length: (
size_t)UTF8StringLength;
75 - (void)appendCString: (const
char*)cString
86 - (void)appendCString: (const
char*)cString
88 length: (
size_t)cStringLength;
110 arguments: (va_list)arguments;
117 - (void)prependString: (
OFString*)string;
149 - (void)insertString: (
OFString*)string
150 atIndex: (
size_t)index;
157 - (void)deleteCharactersInRange: (
of_range_t)range;
165 - (void)replaceCharactersInRange: (
of_range_t)range
174 - (void)replaceOccurrencesOfString: (
OFString*)string
187 - (void)replaceOccurrencesOfString: (
OFString*)string
189 options: (
int)options
213 OF_ASSUME_NONNULL_END
of_string_encoding_t
The encoding of a string.
Definition: OFString.h:50
void capitalize()
Capitalizes the string.
Definition: OFMutableString.m:428
void deleteTrailingWhitespaces()
Deletes all whitespaces at the end of the string.
Definition: OFMutableString.m:525
A class for storing constant strings using the @"" literal.
Definition: OFConstantString.h:37
void makeImmutable()
Converts the mutable string to an immutable string.
Definition: OFMutableString.m:555
A class for handling strings.
Definition: OFString.h:91
void reverse()
Reverses the string.
Definition: OFMutableString.m:399
A class for storing and modifying strings.
Definition: OFMutableString.h:26
A range.
Definition: OFObject.h:65
void deleteLeadingWhitespaces()
Deletes all whitespaces at the beginning of the string.
Definition: OFMutableString.m:510
void lowercase()
Converts the string to lowercase.
Definition: OFMutableString.m:420
void uppercase()
Converts the string to uppercase.
Definition: OFMutableString.m:412
void deleteEnclosingWhitespaces()
Deletes all whitespaces at the beginning and the end of the string.
Definition: OFMutableString.m:544