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: (const 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;
112 arguments: (va_list)arguments;
119 - (void)prependString: (
OFString *)string;
151 - (void)insertString: (
OFString *)string
152 atIndex: (
size_t)index;
159 - (void)deleteCharactersInRange: (
of_range_t)range;
167 - (void)replaceCharactersInRange: (
of_range_t)range
168 withString: (
OFString *)replacement;
176 - (void)replaceOccurrencesOfString: (
OFString *)string
177 withString: (
OFString *)replacement;
189 - (void)replaceOccurrencesOfString: (
OFString *)string
191 options: (
int)options
215 OF_ASSUME_NONNULL_END
void deleteTrailingWhitespaces()
Deletes all whitespaces at the end of the string.
Definition: OFMutableString.m:562
void deleteLeadingWhitespaces()
Deletes all whitespaces at the beginning of the string.
Definition: OFMutableString.m:544
void capitalize()
Capitalizes the string.
Definition: OFMutableString.m:441
A class for storing and modifying strings.
Definition: OFMutableString.h:26
A class for handling strings.
Definition: OFString.h:114
void deleteEnclosingWhitespaces()
Deletes all whitespaces at the beginning and the end of the string.
Definition: OFMutableString.m:589
void uppercase()
Converts the string to uppercase.
Definition: OFMutableString.m:425
A class for storing constant strings using the @"" literal.
Definition: OFConstantString.h:37
A range.
Definition: OFObject.h:66
void lowercase()
Converts the string to lowercase.
Definition: OFMutableString.m:433
void makeImmutable()
Converts the mutable string to an immutable string.
Definition: OFMutableString.m:600
of_string_encoding_t
The encoding of a string.
Definition: OFString.h:53
void reverse()
Reverses the string.
Definition: OFMutableString.m:411