Up

GSWeb: Class NSString with Trimming

Authors

Manuel Guesdon (mguesdon@orange-concept.com)

Version: 1.3

Date: 2003/01/19 15:33:07

Copyright: (C) 1999-2003 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the NSMutableString(Qutotes) category
  2. Software documentation for the NSString(Qutotes) category
  3. Software documentation for the NSString(SBString) category
  4. Software documentation for the NSString(UniqueIdString) category
  5. Software documentation for the NSString(stringWithObject) category
  6. Software documentation for the NSString(uniqueFileName) category

Software documentation for the NSMutableString(Qutotes) category

NSMutableString(Qutotes)

Declared in:
Foundation/NSString+Trimming.h
Standards:

Description forthcoming.

Method summary

removePrefix: andSuffix: 

- (void) removePrefix: (NSString*)prefix andSuffix: (NSString*)suffix;

Description forthcoming.


removeQuote: 

- (void) removeQuote: (NSString*)quote;

Description forthcoming.


Software documentation for the NSString(Qutotes) category

NSString(Qutotes)

Declared in:
Foundation/NSString+Trimming.h
Standards:

Description forthcoming.

Method summary

hasPrefix: andSuffix: 

- (BOOL) hasPrefix: (NSString*)prefix andSuffix: (NSString*)suffix;

Description forthcoming.


isQuotedWith: 

- (BOOL) isQuotedWith: (NSString*)quote;

Description forthcoming.


stringWithoutPrefix: andSuffix: 

- (NSString*) stringWithoutPrefix: (NSString*)prefix andSuffix: (NSString*)suffix;

Description forthcoming.


stringWithoutQuote: 

- (NSString*) stringWithoutQuote: (NSString*)quote;

Description forthcoming.


Software documentation for the NSString(SBString) category

NSString(SBString)

Declared in:
Foundation/NSString+Trimming.h
Standards:

Description forthcoming.

Method summary

isAFloatNumber 

- (BOOL) isAFloatNumber;

Description forthcoming.


isANumber 

- (BOOL) isANumber;

Description forthcoming.


isAnIntegerNumber 

- (BOOL) isAnIntegerNumber;

Description forthcoming.


isAnIntegerNumberWithMin: max: 

- (BOOL) isAnIntegerNumberWithMin: (long)min max: (long)max;

Description forthcoming.


isAnUnsignedIntegerNumber 

- (BOOL) isAnUnsignedIntegerNumber;

Description forthcoming.


isAnUnsignedIntegerNumberWithMax: 

- (BOOL) isAnUnsignedIntegerNumberWithMax: (unsigned long)max;

Description forthcoming.


isStartingWithNumber 

- (BOOL) isStartingWithNumber;

Description forthcoming.


longLongValue 

- (long long) longLongValue;

Description forthcoming.


longValue 

- (long) longValue;

Description forthcoming.


ulongValue 

- (unsigned long) ulongValue;

Description forthcoming.


Software documentation for the NSString(UniqueIdString) category

NSString(UniqueIdString)

Declared in:
Foundation/NSString+Trimming.h
Standards:

Description forthcoming.

Method summary

stringUniqueIdWithLength: 

+ (NSString*) stringUniqueIdWithLength: (int)length;

Description forthcoming.


Software documentation for the NSString(stringWithObject) category

NSString(stringWithObject)

Declared in:
Foundation/NSString+Trimming.h
Standards:

Description forthcoming.

Method summary

stringWithObject: 

+ (NSString*) stringWithObject: (id)object;

Description forthcoming.


Software documentation for the NSString(uniqueFileName) category

NSString(uniqueFileName)

Declared in:
Foundation/NSString+Trimming.h
Standards:

Description forthcoming.

Method summary

stringForUniqueFilenameInDirectory: withPrefix: withSuffix: 

+ (NSString*) stringForUniqueFilenameInDirectory: (NSString*)directory withPrefix: (NSString*)prefix withSuffix: (NSString*)suffix;

Description forthcoming.



Up