Samond Classes Library 1.2.6-STABLE build 219
|
Class NSString extentions category. More...
#import <NSString+SCString.h>
Creating Strings | |
(instancetype) | + stringWithCoder: |
(instancetype) | + stringWithContentsOfSerializedFile: |
(instancetype) | + stringWithDataDictionary: |
(instancetype) | + stringWithDataDictionaryFromFile: |
(instancetype) | + stringWithStream: |
(instancetype) | + stringWithFileStream: |
(instancetype) | + stringWithData: |
(instancetype) | + stringWithContentsOfFile: |
(instancetype) | + stringWithContentsOfURL: |
(instancetype) | + stringWithContentsOfURLString: |
(instancetype) | + stringWithIndexSet: |
(instancetype) | + stringWithCharacter: |
(instancetype) | + stringWithCharacter:length: |
(instancetype) | + stringWithLength: |
(instancetype) | + stringWithPointer: |
(instancetype) | + stringWithID: |
(instancetype) | + stringWithFormat:arguments: |
Initializing Strings | |
(instancetype) | - initWithIndexSet: |
(instancetype) | - initWithCharacter: |
(instancetype) | - initWithCharacter:length: |
(instancetype) | - initWithLength: |
(instancetype) | - initWithPointer: |
(instancetype) | - initWithID: |
String Words | |
NSString * | normalizedString |
SCIndex | wordsCount |
NSString * | firstWord |
NSString * | lastWord |
NSString * | endOfString |
(NSString *) | - word: |
Comparing Strings | |
(BOOL) | - isEqualToStrings: |
Expanding Strings | |
(instancetype) | + stringWithLeftExpandedString:length:character: |
(instancetype) | + stringWithLeftExpandedString:length: |
(instancetype) | + stringWithLeftZeroExpandedString:length: |
(instancetype) | + stringWithRightExpandedString:length:character: |
(instancetype) | + stringWithRightExpandedString:length: |
(NSString *) | - leftExpandedStringToLength:character: |
(NSString *) | - leftExpandedStringToLength: |
(NSString *) | - leftZeroExpandedStringToLength: |
(NSString *) | - rightExpandedStringToLength:character: |
(NSString *) | - rightExpandedStringToLength: |
(instancetype) | - initWithLeftExpandedString:length:character: |
(instancetype) | - initWithLeftExpandedString:length: |
(instancetype) | - initWithLeftZeroExpandedString:length: |
(instancetype) | - initWithRightExpandedString:length:character: |
(instancetype) | - initWithRightExpandedString:length: |
Adding Delimiters | |
(instancetype) | + stringWithString:separator:left: |
(instancetype) | + stringWithString:spacesLeft: |
(instancetype) | + stringWithString:separator:right: |
(instancetype) | + stringWithString:spacesRight: |
(NSString *) | - stringWithSeparator:left: |
(NSString *) | - stringWithSpacesLeft: |
(NSString *) | - stringWithSeparator:right: |
(NSString *) | - stringWithSpacesRight: |
(instancetype) | - initWithString:separator:left: |
(instancetype) | - initWithString:spacesLeft: |
(instancetype) | - initWithString:separator:right: |
(instancetype) | - initWithString:spacesRight: |
Reversing Strings | |
NSString * | reversedString |
(instancetype) | + stringWithReversedString: |
(instancetype) | - initWithReversedString: |
Other Properties | |
BOOL | empty |
NSString * | stringWithUpperFirstLetter |
Class NSString extentions category.
Extends the functionality of the standard class NSString by adding the functions for string processing and library support (data dictionaries, collections, streams).
- (SCIndex) countOfSubstring: | (NSString *) | substring |
Returns a number of occurrences the specified substring into the receiving substring by using the the case sensitive comparison operations.
substring | - the required substring |
- (SCIndex) countOfSubstring: | (NSString *) | substring | |
caseInsensitive: | (BOOL) | caseInsensitive | |
Returns a number of occurrences the specified substring into the receiving substring by using the specified case insensitive flag.
substring | - the required substring |
caseInsensitive | - YES for case insensitive comparison operations, otherwise NO |
- (BOOL) existsSubstring: | (NSString *) | substring |
Returns a boolean value that indicates whether the receiving string is contains the specified substring by using the case sensitive comparison operations.
substring | - the required substring |
- (BOOL) existsSubstring: | (NSString *) | substring | |
caseInsensitive: | (BOOL) | caseInsensitive | |
Returns a boolean value that indicates whether the receiving string is contains the specified substring by using the specified case insensitive flag.
substring | - the required substring |
caseInsensitive | - YES for case insensitive comparison operations, otherwise NO |
- (NSArray *) indexesOfSubstring: | (NSString *) | substring |
Returns an array with indexes of all occurrences a given substring into the receiving string by using the case sensitive comparison operations.
substring | - the desired substring |
- (NSArray *) indexesOfSubstring: | (NSString *) | substring | |
caseInsensitive: | (BOOL) | caseInsensitive | |
Returns an array with indexes of all occurrences a given substring into the receiving string by using the specified case insensitive flag.
substring | - the desired substring |
caseInsensitive | - YES for case insensitive comparison operations, otherwise NO |
- (SCIndex) indexOfSubstring: | (NSString *) | substring |
Returns the index of the first occurrence a given substring into the receiving substring by using the case sensitive comparison operations.
substring | - the desired substring |
- (SCIndex) indexOfSubstring: | (NSString *) | substring | |
caseInsensitive: | (BOOL) | caseInsensitive | |
Returns the index of the first occurence a given substring into the receiving substring by using the specified case insensitive flag.
substring | - the desired substring |
caseInsensitive | - YES for case insensitive comparison operations, otherwise NO |
- (instancetype) initWithBinaryInteger: | (SCULong) | integer |
Initializes a string using a binary representation of the specified 32-bit integer value.
integer | - the source integer value |
- (instancetype) initWithBinaryInteger: | (SCULong) | integer | |
capacity: | (SCCapacity) | capacity | |
Initializes a string using a binary representation of the specified integer value and a given capacity.
integer | - the source integer value |
capacity | - the capacity of the integer value:
|
- (instancetype) initWithBool: | (BOOL) | boolean |
Initializes a string using a representation of the specified boolean value.
boolean | - the source boolean value |
- (instancetype) initWithCharacter: | (unichar) | character |
Initializes a string by using the specified character.
character | - the source character |
- (instancetype) initWithCharacter: | (unichar) | character | |
length: | (SCIndex) | length | |
Initializes a string by using the specified number of a given character.
character | - the source character |
length | - the number of the characters |
- (instancetype) initWithDecimalInteger: | (SCLong) | integer |
Initializes a string using a decimal representation of the specified integer value.
integer | - the source integer value |
- (instancetype) initWithDecimalInteger: | (SCLong) | integer | |
separators: | (BOOL) | separators | |
Initializes a string using a decimal representation of the specified integer value and flag of using the digit group delimiters.
integer | - the source integer value |
separators | - YES for using digit group delimiters and NO for initializing string without digit group delimiters |
- (instancetype) initWithDouble: | (SCDouble) | value |
Initializes a string using a representation of the specified double value.
value | - the source double value |
- (instancetype) initWithFloat: | (SCFloat) | value |
Initializes a string using a representation of the specified float value.
value | - the source float value |
- (instancetype) initWithHexadecimalInteger: | (SCULong) | integer |
Initializes a string using a hexadecimal representation of the specified integer value.
integer | - the source integer value |
- (instancetype) initWithHexadecimalInteger: | (SCULong) | integer | |
capacity: | (SCCapacity) | capacity | |
Initializes a string using a hexadecimal representation of the specified integer value and a given capacity.
integer | - the source integer value |
capacity | - the capacity of the integer value:
|
- (instancetype) initWithID: | (id) | object |
Initializes a string by using the specified class instance.
object | - the source class instance |
- (instancetype) initWithIndexSet: | (NSIndexSet *) | indexSet |
Initializes a string by using the specified index set.
indexSet | - the source index set |
- (instancetype) initWithInteger: | (SCLong) | integer |
Initializes a string using a decimal representation of the specified integer value.
integer | - the source integer value |
- (instancetype) initWithLeftExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
Initializes a string by padding the specified source string on the left with the spaces to a given length.
string | - the source string |
length | - the required length of the initialized string |
- (instancetype) initWithLeftExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
character: | (unichar) | character | |
Initializes a string by padding the specified source string on the left with the specified character to a given length.
string | - the source string |
length | - the required length of the initialized string |
character | - the character to padding |
- (instancetype) initWithLeftZeroExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
Initializes a string by padding the specified source string on the left with the zero characters to a given length.
string | - the source string |
length | - the required length of the initialized string |
- (instancetype) initWithLength: | (SCUInteger) | length |
Initializes a string by using the specified number of the space characters.
length | - the length of the new string |
- (instancetype) initWithOctalInteger: | (SCULong) | integer |
Initializes a string using an octal representation of the specified integer value.
integer | - the source integer value |
- (instancetype) initWithPointer: | (void *) | pointer |
Initializes a string by using the specified pointer.
pointer | - the source pointer |
- (instancetype) initWithReversedString: | (NSString *) | string |
Initializes a string using the characters from a given string in the reversed order.
string | - the source string |
- (instancetype) initWithRightExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
Initializes a string by padding the specified source string on the right with the spaces to a given length.
string | - the source string |
length | - the reqyuired length of the initialized string |
- (instancetype) initWithRightExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
character: | (unichar) | character | |
Initializes a string by padding the specified source string on the right with the specified character to a given length.
string | - the source string |
length | - the required length of the initialized string |
character | - the character to padding |
- (instancetype) initWithString: | (NSString *) | string | |
separator: | (NSString *) | separator | |
left: | (SCIndex) | left | |
Initializes a string by adding a given group separators after the specified number of characters from left to right of the specified source string.
string | - the source string |
separator | - the separator to add into the initialized string |
left | - the number of characters within the each group |
- (instancetype) initWithString: | (NSString *) | string | |
separator: | (NSString *) | separator | |
right: | (SCIndex) | right | |
Initializes a string by adding a given group separators after the specified number of characters from right to left of the specified source string.
string | - the source string |
separator | - the separator to add into the initialized string |
right | - the number of characters within the each group |
- (instancetype) initWithString: | (NSString *) | string | |
spacesLeft: | (SCIndex) | left | |
Initializes a string by adding the spaces as a group separators after the specified number of characters from left to right of the specified source string.
string | - the source string |
left | - the number of characters within the each group |
- (instancetype) initWithString: | (NSString *) | string | |
spacesRight: | (SCIndex) | right | |
Initializes a string by adding the spaces as a group separators after the specified number of characters from right to left of the specified source string.
string | - the source string |
right | - the number of characters within the each group |
- (BOOL) isCorrectRange: | (NSRange) | range |
Returns a boolean value that indicates whether the specified characters range is correct within the receiving string.
range | - the characters range to check |
- (BOOL) isEqualToStrings: | (NSString *) | string | |
, | NS_REQUIRES_NIL_TERMINATION | ||
Returns a boolean value that indicates whether the receiving string is equal to any string from a given string list.
string | - the first string to compare with the receiving string |
... | - a null-terminated list of alternating strings to compare |
NS_REQUIRES_NIL_TERMINATION | - the mandatory nil pointer |
- (NSString *) leftExpandedStringToLength: | (SCIndex) | length |
Returns a receiving string padded on the left by the spaces to the specified length.
length | - the required string length |
- (NSString *) leftExpandedStringToLength: | (SCIndex) | length | |
character: | (unichar) | character | |
Returns a receiving string padded on the left of the specified character to the specified length.
length | - the required string length |
character | - the padding character |
- (NSString *) leftZeroExpandedStringToLength: | (SCIndex) | length |
Returns a receiving string padded on the left by the zero characters to the specified length.
length | - the required string length |
- (NSString *) ltrim |
Returns the receiving string without the leading spaces and tabs.
- (NSString *) rightExpandedStringToLength: | (SCIndex) | length |
Returns a receiving string padded on the right by the spaces to the specified length.
length | - the required length of the string |
- (NSString *) rightExpandedStringToLength: | (SCIndex) | length | |
character: | (unichar) | character | |
Returns a receiving string padded on the right by the specified character to the specified length.
length | - the required string length |
character | - the padding character |
- (NSString *) rtrim |
Returns the receiving string without the trailing spaces and tabs.
- (NSString *) skipLeftPart: | (SCIndex) | characters |
Returns a receiving string without the specified number of the leading characters.
characters | - the number of the characters to remove |
- (NSString *) skipRightPart: | (SCIndex) | characters |
Returns a string without the specified number of the trailing characters.
characters | - the number of the characters to remove |
+ (instancetype) stringWithBinaryInteger: | (SCULong) | integer |
Returns a string created by using a binary representation of the specified 32-bit integer value.
integer | - the source integer value |
+ (instancetype) stringWithBinaryInteger: | (SCULong) | integer | |
capacity: | (SCCapacity) | capacity | |
Returns a string created by using a binary representation of the specified integer value and a given capacity:
integer | - the source integer value |
capacity | - the capacity of the integer value:
|
+ (instancetype) stringWithBool: | (BOOL) | boolean |
Returns a string created by using a representation of the specified boolean value.
boolean | - the source boolean value |
+ (instancetype) stringWithCharacter: | (unichar) | character |
Returns a string created by using the specfied character.
character | - the source character |
+ (instancetype) stringWithCharacter: | (unichar) | character | |
length: | (SCIndex) | length | |
Returns a string created by using the specified character and a length of the new string.
character | - the source character |
length | - the length of the new string |
+ (instancetype) stringWithCoder: | (NSCoder *) | coder |
Returns a string created by using the data from the specified coder.
coder | - the source coder |
+ (instancetype) stringWithContentsOfFile: | (NSString *) | path |
Returns a string created by using the data from the file with the specified file.
path | - the path of the source file |
+ (instancetype) stringWithContentsOfSerializedFile: | (NSString *) | path |
Returns a string created by using the data from the serialized file with the specified path.
path | - the path of the serialized file |
+ (instancetype) stringWithContentsOfURL: | (NSURL *) | url |
Returns a string created by using the data from the specified URL.
url | - the source URL |
+ (instancetype) stringWithContentsOfURLString: | (NSString *) | urlString |
Returns a string created by using the data from the URL with the specified string.
urlString | - the string of the URL |
+ (instancetype) stringWithData: | (NSData *) | data |
Returns a string created by using the specified data object.
data | - the source data object |
+ (instancetype) stringWithDataDictionary: | (NSDictionary *) | dictionary |
Returns a string created by using the data from the specified data dictionary.
dictionary | - the source data dictionary |
+ (instancetype) stringWithDataDictionaryFromFile: | (NSString *) | path |
Returns a string created by using the data from the dictionary file with the specified path.
path | - the path to the source dictionary file |
+ (instancetype) stringWithDecimalInteger: | (SCLong) | integer |
Returns a string created by using a decimal representation of the specified integer value.
integer | - the source integer value |
+ (instancetype) stringWithDecimalInteger: | (SCLong) | integer | |
separators: | (BOOL) | separators | |
Returns a string created by using a decimal representation of the specified integer value and a flag of using the digit group delimiters.
integer | - the source integer value |
separators | - YES for using the digit group delimiters and NO for creating string without digit group delimiters |
- (NSString *) stringWithDeletedSubstring: | (NSString *) | substring |
Returns the receiving string without a given substring by using the case sensitive comparison operations.
substring | - the substring to remove |
- (NSString *) stringWithDeletedSubstring: | (NSString *) | substring | |
caseInsensitive: | (BOOL) | caseInsensitive | |
Returns the receiving string without a given substring by using the specified case insensitive flag.
substring | - the substring to remove |
caseInsensitive | - YES for case insensitive comparison operations, otherwise NO |
- (NSString *) stringWithDeletedSubstringFromIndex: | (SCIndex) | index |
Returns the receiving string without characters after the specified index.
index | - the index of the first character to remove |
- (NSString *) stringWithDeletedSubstringToIndex: | (SCIndex) | index |
Returns the receiving string without the characters before a given index.
index | - the index of the last removed character |
- (NSString *) stringWithDeletedSubstringToRange: | (NSRange) | range |
Returns the receiving string with characters after a given range.
range | - the range of the characters |
- (NSString *) stringWithDeletedSubstringWithRange: | (NSRange) | range |
Returns the receiving string without characters within the specified range.
range | - the range of characters to remove |
+ (instancetype) stringWithDouble: | (SCDouble) | value |
Return a string created by using a representation of the specified double value.
value | - the source double value |
+ (instancetype) stringWithFileStream: | (NSString *) | path |
Returns a string created by using the data from the file stream with the specified path.
path | - the path to the source file stream |
SCStreamException | - stream error detected |
SCSystemException | - system error detected |
+ (instancetype) stringWithFloat: | (SCFloat) | value |
Returns a string created by using a representation of the specified float value.
value | - the source float value |
+ (instancetype) stringWithFormat: | (NSString *) | format | |
arguments: | (va_list) | arguments | |
Returns a string created by using a given format string as a template into which the remaining arguments are substituted without any localization.
format | - a format string |
arguments | - a list of arguments to substitute into a format string |
+ (instancetype) stringWithHexadecimalInteger: | (SCULong) | integer |
Returns a string created by using a hexadecimal representation of the specified integer value.
integer | - the source integer value |
+ (instancetype) stringWithHexadecimalInteger: | (SCULong) | integer | |
capacity: | (SCCapacity) | capacity | |
Returns a string created by using a hexadecimal representation of the specified integer value and a given capacity.
integer | - the source integer value |
capacity | - the capacity of the integer value:
|
+ (instancetype) stringWithID: | (id) | object |
Returns a string created by using the specified object.
object | - the source object |
+ (instancetype) stringWithIndexSet: | (NSIndexSet *) | indexSet |
Returns a string created by using the specified index set.
indexSet | - the source index set |
- (NSString *) stringWithInsertedString: | (NSString *) | string |
Returns the receiving string with a given substring before the first character.
string | - the substring to insert |
- (NSString *) stringWithInsertedString: | (NSString *) | string | |
index: | (SCUInteger) | index | |
Inserts the specified substring at a given index and returns the new string.
string | - the substring to insert |
index | - the index to the inserting a substring |
+ (instancetype) stringWithInteger: | (SCLong) | integer |
Returns a string created by using a decimal representation of the specified integer value.
integer | - the source integer value |
- (NSString *) stringWithLeftCharacters: | (SCIndex) | characters |
Returns a string with the specified number of the leading characters from the receiving string.
characters | - the number of the leading characters |
+ (instancetype) stringWithLeftExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
Returns a string created by padding the specified source string on the left with the spaces to a given length.
string | - the source string |
length | - the required length of the new string |
+ (instancetype) stringWithLeftExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
character: | (unichar) | character | |
Returns a string created by padding the specified source string on the left with the specified character to a given length.
string | - the source string |
length | - the required length of the new string |
character | - the character to padding |
+ (instancetype) stringWithLeftZeroExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
Returns a string created by padding the specified source string on the left with the zero characters to a given length.
string | - the source string |
length | - the required length of the new string |
+ (instancetype) stringWithLength: | (SCUInteger) | length |
Returns a string created by using the specified number of the space characters.
length | - the length of the new string |
+ (instancetype) stringWithOctalInteger: | (SCULong) | integer |
Returns a string created by using an octal representation of the specified integer value.
integer | - the source integer value |
+ (instancetype) stringWithPointer: | (void *) | pointer |
Returns a string created by using the specified pointer.
pointer | - the source pointer |
- (NSString *) stringWithReplacedSubstring: | (NSString *) | substring | |
withString: | (NSString *) | string | |
Returns the receiving string in which all occurrences of the specified substring are replaced by using an another given string.
substring | - the substring to replace |
string | - the new substring |
- (NSString *) stringWithReplacedSubstring: | (NSString *) | substring | |
withString: | (NSString *) | string | |
caseInsensitive: | (BOOL) | caseInsensitive | |
Returns the receiving string in which all occurrences of the specified substring are replaced by using an another given string.@ Additional flag defines the case sensitive mode.
substring | - the substring to replace |
string | - the new substring |
caseInsensitive | - YES for the case insensitive mode and NO for the case sensitive comparison operations |
- (NSString *) stringWithReplacedSubstringFromIndex: | (SCUInteger) | index | |
withString: | (NSString *) | string | |
Returns the receiving string with the specified number of the trailing characters is replaced by a given substring.
index | - the index of the first character to replace |
string | - the substring with which will be replaced the specified characters |
- (NSString *) stringWithReplacedSubstringToIndex: | (SCUInteger) | index | |
withString: | (NSString *) | string | |
Returns the receiving string with the specified number of the leading characters is replaced by a given substring.
If the specified substring is empty, then returns the receiving string without the characters before the specified index.
index | - the index of the last character to replace |
string | - the substring with which will be replaced the specified characters |
- (NSString *) stringWithReplacedSubstringWithRange: | (NSRange) | range | |
withString: | (NSString *) | string | |
Returns the receiving string with the characters within a given range are replaced by the specified substring.
range | - the range of the characters to replace |
string | - the substring with which will be replaced the specified characters |
+ (instancetype) stringWithReversedString: | (NSString *) | string |
Returns a string created by using the characters from a given string in the reversed order.
string | - the source string |
- (NSString *) stringWithRightCharacters: | (SCIndex) | characters |
Returns a string with the specified number of the trailing characters from the receiving string.
characters | - the number of the trailing characters |
+ (instancetype) stringWithRightExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
Returns a string created by padding the specified source string on the right with the spaces to a given length.
string | - the source string |
length | - the required length of the new string |
+ (instancetype) stringWithRightExpandedString: | (NSString *) | string | |
length: | (SCIndex) | length | |
character: | (unichar) | character | |
Returns a string created by padding the specified source string on the right with the specified character to a given length.
string | - the source string |
length | - the required length of the new string |
character | - the character to padding |
- (NSString *) stringWithSeparator: | (NSString *) | separator | |
left: | (SCIndex) | left | |
Returns a string with the added given group separators after the specified number of characters from the left to right of the receiving string.
separator | - the separator to add into the receiving string |
left | - the number of the characters within the each group |
- (NSString *) stringWithSeparator: | (NSString *) | separator | |
right: | (SCIndex) | right | |
Returns a string with the added given group separators after the specified number of characters from right to left of the receiving string.
separator | - the separator to add into the receiving string |
right | - the number of the characters within the each group |
- (NSString *) stringWithSpacesLeft: | (SCIndex) | left |
Returns a string with the added spaces as a group separators after the specified number of character from the left to right of the receiving string.
left | - the number of the characters within the each group |
- (NSString *) stringWithSpacesRight: | (SCIndex) | right |
Returns a string with the added spaces as a group separators after the specified number of characters from the left to right of the receiving string.
right | - the number of the characters within the each group |
+ (instancetype) stringWithStream: | (SCStream *) | stream |
Returns a string created by using the data from the specified stream.
stream | - the source stream |
SCStreamException | - stream error detected |
SCSystemException | - system error detected |
+ (instancetype) stringWithString: | (NSString *) | string | |
separator: | (NSString *) | separator | |
left: | (SCIndex) | left | |
Returns a string created by adding a given group separators after the specified number of characters from left to right of the specified source string.
string | - the source string |
separator | - the separator to add into the created string |
left | - the number of the characters within the each griup |
+ (instancetype) stringWithString: | (NSString *) | string | |
separator: | (NSString *) | separator | |
right: | (SCIndex) | right | |
Returns a string created by adding a given group separators after the specified number of characters from right to left of the specified source string.
string | - the source string |
separator | - the separator to add into the created string |
right | - the number of the characters within the each group |
+ (instancetype) stringWithString: | (NSString *) | string | |
spacesLeft: | (SCIndex) | left | |
Returns a string created by adding the spaces as a group separators after the specified number of characters from left to right of the specified source string.
string | - the source string |
left | - the number of the characters within the each group |
+ (instancetype) stringWithString: | (NSString *) | string | |
spacesRight: | (SCIndex) | right | |
Returns a string created by adding the spaces as a group separators after the specified number of characters from right to left of the specified source string.
string | - the source string |
right | - the number of the characters within the each group |
- (NSString *) trim |
Returns the receiving string without leading and trailing spaces and tabs.
- (NSString *) word: | (SCIndex) | word |
Returns the word of the receiving string at the specified index.
word | - the index of the word |
|
readnonatomicassign |
The integer value of the binary integer string
|
readnonatomicassign |
The boolean value of the string
|
readnonatomicassign |
The integer value of the decimal integer string
|
readnonatomicassign |
The boolean value that detrmines whether the string is contains at least one character
|
readnonatomicassign |
String without the first word
|
readnonatomicassign |
First word of the receiving string
|
readnonatomicassign |
The integer value of the hexadecimal integer string
|
readnonatomicassign |
A boolean value that indicates whether the string is a binary representation of the integer value
|
readnonatomicassign |
A boolean value that indicates whether the string is a boolean value representation
|
readnonatomicassign |
A boolean value that indicates whether the string is a decimal representation of the integer value
|
readnonatomicassign |
A boolean value that indicates whether the string is a representation of the double floating-point value
|
readnonatomicassign |
A boolean value that indicates whether the string is a representation of the float floating-point value
|
readnonatomicassign |
A boolean value that indicates whether the string is a hexadecimal representation of the integer value
|
readnonatomicassign |
A boolean value that indicates whether the string is an octal representation of the integer value
|
readnonatomicassign |
Last word of the receiving string
|
readnonatomicassign |
Normilized string
|
readnonatomicassign |
The integer value of the octal integer string
|
readnonatomicassign |
The string with the reversed order of the characters
|
readnonatomicassign |
A string with the first uppercase character
|
readnonatomicassign |
A string without leading and trailing spaces and tabs
|
readnonatomicassign |
Number of words within the receiving string