[Previous]
[Up]
[Next]
NSMutableString
Authors
- Richard Frith-Macdonald
-
Version: $Revision$
Date: $Date$
Declared in: Foundation/NSString.h
Inherits from: NSString
Conforms to: NSCoding
Instance Variables
Methods
Class Methods
+ (NSMutableString*) stringWithCapacity: (unsigned int)capacity;
Instances Methods
- (void) appendFormat: (NSString*)format,;
- (void) appendString: (NSString*)aString;
- (void) deleteCharactersInRange: (NSRange)aRange;
- (id) initWithCapacity: (unsigned int)capacity;
- (void) insertString: (NSString*)aString;
- (void) replaceCharactersInRange: (NSRange)aRange withString: (NSString*)aString;
- (void) replaceString: (NSString*)aString withString: (NSString*)replacement;
Standards: GNUstep NotMacOS-X NotOpenStep
Replaces any (and all) occurrances of aString in the
receiver by replacement.
Has no effect if aString does not occur within the
receiver. NB. an empty string is not considered to exist within
the receiver.
- (void) setString: (NSString*)aString;