2006-02-15 08:31:43 +00:00
|
|
|
/* Interface for NSString for GNUstep
|
1999-11-26 19:43:43 +00:00
|
|
|
Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
|
1995-07-01 19:01:11 +00:00
|
|
|
|
1996-04-17 20:17:45 +00:00
|
|
|
Written by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
|
1995-07-01 19:01:11 +00:00
|
|
|
Date: 1995
|
1995-03-18 17:15:15 +00:00
|
|
|
|
1996-05-12 00:56:10 +00:00
|
|
|
This file is part of the GNUstep Base Library.
|
1995-03-18 17:15:15 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
2007-09-14 11:36:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
1995-03-18 17:15:15 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2008-06-08 10:38:33 +00:00
|
|
|
version 2 of the License, or (at your option) any later version.
|
1995-03-18 17:15:15 +00:00
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
2007-09-14 11:36:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
1995-03-18 17:15:15 +00:00
|
|
|
License along with this library; if not, write to the Free
|
2006-02-27 09:35:19 +00:00
|
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02111 USA.
|
2008-11-09 10:11:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
<chapter>
|
|
|
|
<heading>Portable path handling</heading>
|
|
|
|
<p>Portable path handling (across both unix-like and mswindows operating
|
|
|
|
systems) requires some care. A modern operating system uses the concept
|
|
|
|
of a single root to the filesystem, but mswindows has multiple filesystems
|
|
|
|
with no common root, so code must be aware of this. There is also the
|
2009-03-29 07:32:11 +00:00
|
|
|
more minor issue that windows often uses a backslash as a separator between
|
|
|
|
the components of a path and unix-like systems always use forward slash.<br />
|
|
|
|
On windows there is also the issue that two styles of path are used,
|
|
|
|
most commonly with a drive letter and a path on that drive
|
|
|
|
(eg. 'C:\directory\file') but also UNC paths
|
|
|
|
(eg. '//host/share/directory/file') so path handling functions must deal
|
|
|
|
with both formats.
|
2008-11-09 10:11:18 +00:00
|
|
|
</p>
|
|
|
|
<p>GNUstep has three path handling modes, 'gnustep', 'unix', and 'windows'.
|
2009-03-29 07:32:11 +00:00
|
|
|
The mode defaults to 'gnustep' but may be set using the GSPathHandling()
|
|
|
|
function.<br />
|
2008-11-09 10:11:18 +00:00
|
|
|
You should probably stick to using the default 'gnustep' mode in which the
|
2011-01-12 09:18:38 +00:00
|
|
|
path handling methods cope with both 'unix' and 'windows' style paths in
|
2008-11-09 10:11:18 +00:00
|
|
|
portable and tolerant manner:<br />
|
|
|
|
Paths are read in literally so they can be in the native format provided
|
2014-01-12 06:34:57 +00:00
|
|
|
by the operating system or in a non-native format. See
|
|
|
|
[NSFileManager-stringWithFileSystemRepresentation:length:].<br />
|
2008-11-09 10:11:18 +00:00
|
|
|
Paths are written out using the native format of the system the application
|
2014-01-12 06:34:57 +00:00
|
|
|
is running on (eg on windows slashes are converted to backslashes).
|
|
|
|
See [NSFileManager-fileSystemRepresentationWithPath:].<br />
|
2008-11-09 10:11:18 +00:00
|
|
|
The path handling methods accept either a forward or backward slash as a
|
|
|
|
path separator when parsing any path.<br />
|
2011-01-12 09:18:38 +00:00
|
|
|
Unless operating in 'unix' mode, a leading letter followed by a colon is
|
|
|
|
considered the start of a windows style path (the drive specifier), and a
|
|
|
|
path beginning with something of the form '//host/share/' is considered
|
|
|
|
the start of a UNC style path.<br />
|
2008-11-09 10:11:18 +00:00
|
|
|
The path handling methods add forward slashes when building new paths
|
|
|
|
internally or when standardising paths, so those path strings provide
|
|
|
|
a portable representation (as long as they are relative paths, not including
|
2009-03-29 07:32:11 +00:00
|
|
|
system specific roots).<br />
|
|
|
|
An important case to note is that on windows a path which looks at first
|
|
|
|
glance like an absolute path may actually be a relative one.<br />
|
|
|
|
'C:file' is a relative path because it specifies a file on the C drive
|
2014-01-12 06:34:57 +00:00
|
|
|
but does not say what directory it is in.<br />
|
|
|
|
Similarly, '/dir/file' is a relative path because it specifies the full
|
|
|
|
location fo a file on a drive, but does not specify which drive it is on.
|
2008-11-09 10:11:18 +00:00
|
|
|
</p>
|
2014-01-12 06:34:57 +00:00
|
|
|
<p>As a consequence of this path handling, you are able to work completely
|
|
|
|
portably using relative paths (adding components, extensions and
|
|
|
|
relative paths to a pth, or removing components, extensions and relative
|
|
|
|
paths from a path etc), and when you save paths as strings in files
|
|
|
|
which may be transferred to another platform, you should save a relative
|
|
|
|
path.<br />
|
|
|
|
When you need to know absolute paths of various points in the filesystem,
|
|
|
|
you can use various path utility functions to obtain those absolute paths.
|
|
|
|
For instance, instead of saving an absolute path to a file, you might want
|
|
|
|
to save a path relative to a user's home directory. You could do that by
|
|
|
|
calling NSHomeDirectory() to get the home directory, and only saving the
|
|
|
|
part of the full path after that prefix.
|
|
|
|
</p>
|
2008-11-09 10:11:18 +00:00
|
|
|
</chapter>
|
|
|
|
*/
|
1995-03-18 17:15:15 +00:00
|
|
|
|
1996-04-17 19:36:35 +00:00
|
|
|
#ifndef __NSString_h_GNUSTEP_BASE_INCLUDE
|
|
|
|
#define __NSString_h_GNUSTEP_BASE_INCLUDE
|
2006-10-31 07:05:46 +00:00
|
|
|
#import <GNUstepBase/GSVersionMacros.h>
|
1995-03-18 17:15:15 +00:00
|
|
|
|
2006-10-31 07:05:46 +00:00
|
|
|
#import <Foundation/NSObject.h>
|
|
|
|
#import <Foundation/NSRange.h>
|
1995-03-23 03:28:06 +00:00
|
|
|
|
2006-09-13 10:20:49 +00:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2004-07-29 15:30:47 +00:00
|
|
|
/**
|
|
|
|
* Type for representing unicode characters. (16-bit)
|
|
|
|
*/
|
2007-12-07 09:43:36 +00:00
|
|
|
typedef uint16_t unichar;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5,GS_API_LATEST)
|
2008-06-06 13:57:06 +00:00
|
|
|
#define NSMaximumStringLength (INT_MAX-1)
|
|
|
|
#endif
|
|
|
|
|
1995-03-23 03:28:06 +00:00
|
|
|
@class NSArray;
|
|
|
|
@class NSCharacterSet;
|
1995-04-03 01:42:02 +00:00
|
|
|
@class NSData;
|
1995-03-23 03:28:06 +00:00
|
|
|
@class NSDictionary;
|
2006-10-31 07:05:46 +00:00
|
|
|
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
2008-03-18 13:55:46 +00:00
|
|
|
@class NSError;
|
2008-06-06 13:57:06 +00:00
|
|
|
@class NSLocale;
|
2000-09-12 23:08:40 +00:00
|
|
|
@class NSURL;
|
2000-09-22 13:45:58 +00:00
|
|
|
#endif
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
#define NSMaximumStringLength (INT_MAX-1)
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
NSCaseInsensitiveSearch = 1,
|
|
|
|
NSLiteralSearch = 2,
|
|
|
|
NSBackwardsSearch = 4,
|
2006-12-15 11:33:18 +00:00
|
|
|
NSAnchoredSearch = 8,
|
|
|
|
NSNumericSearch = 64 /* MacOS-X 10.2 */
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5,GS_API_LATEST)
|
2008-06-06 13:57:06 +00:00
|
|
|
,
|
|
|
|
NSDiacriticInsensitiveSearch = 128,
|
|
|
|
NSWidthInsensitiveSearch = 256,
|
|
|
|
NSForcedOrderingSearch = 512
|
|
|
|
#endif
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_7,GS_API_LATEST)
|
2011-07-21 13:17:27 +00:00
|
|
|
,
|
|
|
|
/**
|
|
|
|
* Treats the search string as a regular expression. This option may be
|
|
|
|
* combined with NSCaseInsensitiveSearch and NSAnchoredSearch, but no other
|
|
|
|
* search options.
|
|
|
|
*
|
|
|
|
* This option may only be used with the -rangeOfString: family of methods.
|
|
|
|
*/
|
|
|
|
NSRegularExpressionSearch = 1024
|
|
|
|
#endif
|
1995-03-23 03:28:06 +00:00
|
|
|
};
|
2008-06-06 13:57:06 +00:00
|
|
|
typedef NSUInteger NSStringCompareOptions;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
2004-07-29 15:30:47 +00:00
|
|
|
/**
|
|
|
|
* <p>Enumeration of available encodings for converting between bytes and
|
|
|
|
* characters (in [NSString]s). The ones that are shared with OpenStep and
|
|
|
|
* Cocoa are: <code>NSASCIIStringEncoding, NSNEXTSTEPStringEncoding,
|
|
|
|
* NSJapaneseEUCStringEncoding, NSUTF8StringEncoding,
|
|
|
|
* NSISOLatin1StringEncoding, NSSymbolStringEncoding,
|
|
|
|
* NSNonLossyASCIIStringEncoding, NSShiftJISStringEncoding,
|
|
|
|
* NSISOLatin2StringEncoding, NSUnicodeStringEncoding,
|
|
|
|
* NSWindowsCP1251StringEncoding, NSWindowsCP1252StringEncoding,
|
|
|
|
* NSWindowsCP1253StringEncoding, NSWindowsCP1254StringEncoding,
|
|
|
|
* NSWindowsCP1250StringEncoding, NSISO2022JPStringEncoding,
|
|
|
|
* NSMacOSRomanStringEncoding, NSProprietaryStringEncoding</code>.</p>
|
|
|
|
*
|
|
|
|
* <p>Additional encodings available under GNUstep are:
|
|
|
|
* <code>NSKOI8RStringEncoding, NSISOLatin3StringEncoding,
|
|
|
|
* NSISOLatin4StringEncoding, NSISOCyrillicStringEncoding,
|
|
|
|
* NSISOArabicStringEncoding, NSISOGreekStringEncoding,
|
|
|
|
* NSISOHebrewStringEncoding, NSISOLatin5StringEncoding,
|
|
|
|
* NSISOLatin6StringEncoding, NSISOThaiStringEncoding,
|
|
|
|
* NSISOLatin7StringEncoding, NSISOLatin8StringEncoding,
|
|
|
|
* NSISOLatin9StringEncoding, NSGB2312StringEncoding, NSUTF7StringEncoding,
|
|
|
|
* NSGSM0338StringEncoding, NSBIG5StringEncoding,
|
|
|
|
* NSKoreanEUCStringEncoding</code>.</p>
|
|
|
|
*/
|
2013-06-06 10:11:27 +00:00
|
|
|
typedef enum _NSStringEncoding
|
1998-01-08 15:25:59 +00:00
|
|
|
{
|
2007-04-11 04:45:49 +00:00
|
|
|
/* NB. Must not have an encoding with value zero - so we can use zero to
|
|
|
|
tell that a variable that should contain an encoding has not yet been
|
|
|
|
initialised */
|
|
|
|
GSUndefinedEncoding = 0,
|
1999-11-26 19:43:43 +00:00
|
|
|
NSASCIIStringEncoding = 1,
|
|
|
|
NSNEXTSTEPStringEncoding = 2,
|
|
|
|
NSJapaneseEUCStringEncoding = 3,
|
|
|
|
NSUTF8StringEncoding = 4,
|
2001-03-12 14:42:52 +00:00
|
|
|
NSISOLatin1StringEncoding = 5, // ISO-8859-1; West European
|
1999-11-26 19:43:43 +00:00
|
|
|
NSSymbolStringEncoding = 6,
|
|
|
|
NSNonLossyASCIIStringEncoding = 7,
|
|
|
|
NSShiftJISStringEncoding = 8,
|
2001-03-12 14:42:52 +00:00
|
|
|
NSISOLatin2StringEncoding = 9, // ISO-8859-2; East European
|
1999-11-26 19:43:43 +00:00
|
|
|
NSUnicodeStringEncoding = 10,
|
2008-06-06 13:57:06 +00:00
|
|
|
NSUTF16StringEncoding = NSUnicodeStringEncoding, // An alias
|
1999-11-26 19:43:43 +00:00
|
|
|
NSWindowsCP1251StringEncoding = 11,
|
2001-03-12 14:42:52 +00:00
|
|
|
NSWindowsCP1252StringEncoding = 12, // WinLatin1
|
|
|
|
NSWindowsCP1253StringEncoding = 13, // Greek
|
|
|
|
NSWindowsCP1254StringEncoding = 14, // Turkish
|
|
|
|
NSWindowsCP1250StringEncoding = 15, // WinLatin2
|
1999-11-26 19:43:43 +00:00
|
|
|
NSISO2022JPStringEncoding = 21,
|
2000-09-02 01:41:29 +00:00
|
|
|
NSMacOSRomanStringEncoding = 30,
|
2007-04-11 04:49:45 +00:00
|
|
|
NSProprietaryStringEncoding = 31,
|
2000-09-02 01:41:29 +00:00
|
|
|
|
2007-04-11 04:45:49 +00:00
|
|
|
NSKOI8RStringEncoding = 50, // Russian/Cyrillic
|
|
|
|
NSISOLatin3StringEncoding = 51, // ISO-8859-3; South European
|
|
|
|
NSISOLatin4StringEncoding = 52, // ISO-8859-4; North European
|
|
|
|
NSISOCyrillicStringEncoding = 22, // ISO-8859-5
|
|
|
|
NSISOArabicStringEncoding = 53, // ISO-8859-6
|
|
|
|
NSISOGreekStringEncoding = 54, // ISO-8859-7
|
|
|
|
NSISOHebrewStringEncoding = 55, // ISO-8859-8
|
|
|
|
NSISOLatin5StringEncoding = 57, // ISO-8859-9; Turkish
|
|
|
|
NSISOLatin6StringEncoding = 58, // ISO-8859-10; Nordic
|
|
|
|
NSISOThaiStringEncoding = 59, // ISO-8859-11
|
|
|
|
/* Possible future ISO-8859 additions
|
|
|
|
// ISO-8859-12
|
|
|
|
*/
|
|
|
|
NSISOLatin7StringEncoding = 61, // ISO-8859-13
|
|
|
|
NSISOLatin8StringEncoding = 62, // ISO-8859-14
|
|
|
|
NSISOLatin9StringEncoding = 63, // ISO-8859-15; Replaces ISOLatin1
|
|
|
|
NSGB2312StringEncoding = 56,
|
|
|
|
NSUTF7StringEncoding = 64, // RFC 2152
|
|
|
|
NSGSM0338StringEncoding, // GSM (mobile phone) default alphabet
|
|
|
|
NSBIG5StringEncoding, // Traditional chinese
|
|
|
|
NSKoreanEUCStringEncoding // Korean
|
2008-06-06 13:57:06 +00:00
|
|
|
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4,GS_API_LATEST)
|
2008-06-06 13:57:06 +00:00
|
|
|
,
|
|
|
|
NSUTF16BigEndianStringEncoding = 0x90000100,
|
|
|
|
NSUTF16LittleEndianStringEncoding = 0x94000100,
|
|
|
|
NSUTF32StringEncoding = 0x8c000100,
|
|
|
|
NSUTF32BigEndianStringEncoding = 0x98000100,
|
|
|
|
NSUTF32LittleEndianStringEncoding = 0x9c000100
|
|
|
|
#endif
|
2013-06-06 10:11:27 +00:00
|
|
|
} NSStringEncoding;
|
1998-01-08 15:25:59 +00:00
|
|
|
|
|
|
|
enum {
|
1999-11-26 19:43:43 +00:00
|
|
|
NSOpenStepUnicodeReservedBase = 0xF400
|
1998-01-08 15:25:59 +00:00
|
|
|
};
|
|
|
|
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4,GS_API_LATEST)
|
2008-06-06 13:57:06 +00:00
|
|
|
enum {
|
|
|
|
NSStringEncodingConversionAllowLossy = 1,
|
|
|
|
NSStringEncodingConversionExternalRepresentation = 2
|
|
|
|
};
|
|
|
|
typedef NSUInteger NSStringEncodingConversionOptions;
|
|
|
|
#endif
|
|
|
|
|
2004-08-26 13:43:34 +00:00
|
|
|
/**
|
|
|
|
* <p>
|
|
|
|
* <code>NSString</code> objects represent an immutable string of Unicode 3.0
|
|
|
|
* characters. These may be accessed individually as type
|
|
|
|
* <code>unichar</code>, an unsigned short.<br/>
|
|
|
|
* The [NSMutableString] subclass represents a modifiable string. Both are
|
|
|
|
* implemented as part of a class cluster and the instances you receive may
|
|
|
|
* actually be of unspecified concrete subclasses.
|
|
|
|
* </p>
|
|
|
|
* <p>
|
|
|
|
* A constant <code>NSString</code> can be created using the following syntax:
|
|
|
|
* <code>@"..."</code>, where the contents of the quotes are the
|
|
|
|
* string, using only ASCII characters.
|
|
|
|
* </p>
|
|
|
|
* <p>
|
|
|
|
* A variable string can be created using a C printf-like <em>format</em>,
|
|
|
|
* as in <code>[NSString stringWithFormat: @"Total is %f", t]</code>.
|
|
|
|
* </p>
|
|
|
|
* <p>
|
|
|
|
* To create a concrete subclass of <code>NSString</code>, you must have your
|
|
|
|
* class inherit from <code>NSString</code> and override at least the two
|
|
|
|
* primitive methods - -length and -characterAtIndex:
|
|
|
|
* </p>
|
|
|
|
* <p>
|
|
|
|
* In general the rule is that your subclass must override any
|
|
|
|
* initialiser that you want to use with it. The GNUstep
|
|
|
|
* implementation relaxes that to say that, you may override
|
|
|
|
* only the <em>designated initialiser</em> and the other
|
|
|
|
* initialisation methods should work.
|
|
|
|
* </p>
|
|
|
|
* <p>
|
|
|
|
* Where an NSString instance method returns an NSString object,
|
|
|
|
* the class of the actual object returned may be any subclass
|
|
|
|
* of NSString. The actual value returned may be a new
|
|
|
|
* autoreleased object, an autoreleased copy of the receiver,
|
|
|
|
* or the receiver itsself. While the abstract base class
|
|
|
|
* implementations of methods (other than initialisers) will
|
|
|
|
* avoid returning mutable strings by returning an autoreleased
|
|
|
|
* copy of a mutable receiver, concrete subclasses may behave
|
|
|
|
* differently, so code should not rely upon the mutability of
|
2004-09-05 02:31:35 +00:00
|
|
|
* returned strings nor upon their lifetime being greater than
|
2004-08-26 13:43:34 +00:00
|
|
|
* that of the receiver which returned them.
|
|
|
|
* </p>
|
|
|
|
*/
|
2002-03-13 13:46:12 +00:00
|
|
|
@interface NSString :NSObject <NSCoding, NSCopying, NSMutableCopying>
|
1995-03-23 03:28:06 +00:00
|
|
|
|
1999-11-26 19:43:43 +00:00
|
|
|
+ (id) string;
|
|
|
|
+ (id) stringWithCharacters: (const unichar*)chars
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length;
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4,GS_API_LATEST) && GS_API_VERSION( 10200,GS_API_LATEST)
|
2005-05-08 07:08:28 +00:00
|
|
|
+ (id) stringWithCString: (const char*)byteString
|
|
|
|
encoding: (NSStringEncoding)encoding;
|
|
|
|
#endif
|
1999-11-26 19:43:43 +00:00
|
|
|
+ (id) stringWithCString: (const char*)byteString
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length;
|
2005-05-08 07:08:28 +00:00
|
|
|
+ (id) stringWithCString: (const char*)byteString;
|
2013-10-29 09:14:45 +00:00
|
|
|
+ (id) stringWithFormat: (NSString*)format, ... NS_FORMAT_FUNCTION(1,2);
|
1999-11-26 19:43:43 +00:00
|
|
|
+ (id) stringWithContentsOfFile:(NSString *)path;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Initializing Newly Allocated Strings
|
2004-09-07 05:43:20 +00:00
|
|
|
- (id) init;
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4,GS_API_LATEST) && GS_API_VERSION( 10200,GS_API_LATEST)
|
2004-01-30 07:17:30 +00:00
|
|
|
- (id) initWithBytes: (const void*)bytes
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length
|
2004-01-30 11:30:56 +00:00
|
|
|
encoding: (NSStringEncoding)encoding;
|
2006-05-20 09:56:49 +00:00
|
|
|
- (id) initWithBytesNoCopy: (void*)bytes
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length
|
2004-01-30 07:17:30 +00:00
|
|
|
encoding: (NSStringEncoding)encoding
|
|
|
|
freeWhenDone: (BOOL)flag;
|
|
|
|
#endif
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4,GS_API_LATEST)
|
2008-03-18 13:55:46 +00:00
|
|
|
+ (id) stringWithContentsOfFile: (NSString*)path
|
|
|
|
usedEncoding: (NSStringEncoding*)enc
|
|
|
|
error: (NSError**)error;
|
|
|
|
- (id) initWithContentsOfFile: (NSString*)path
|
|
|
|
usedEncoding: (NSStringEncoding*)enc
|
|
|
|
error: (NSError**)error;
|
2010-05-02 11:02:26 +00:00
|
|
|
+ (id) stringWithContentsOfFile: (NSString*)path
|
|
|
|
encoding: (NSStringEncoding)enc
|
|
|
|
error: (NSError**)error;
|
|
|
|
- (id) initWithContentsOfFile: (NSString*)path
|
|
|
|
encoding: (NSStringEncoding)enc
|
|
|
|
error: (NSError**)error;
|
|
|
|
+ (id) stringWithContentsOfURL: (NSURL*)url
|
|
|
|
usedEncoding: (NSStringEncoding*)enc
|
|
|
|
error: (NSError**)error;
|
|
|
|
- (id) initWithContentsOfURL: (NSURL*)url
|
|
|
|
usedEncoding: (NSStringEncoding*)enc
|
|
|
|
error: (NSError**)error;
|
|
|
|
+ (id) stringWithContentsOfURL: (NSURL*)url
|
|
|
|
encoding: (NSStringEncoding)enc
|
|
|
|
error: (NSError**)error;
|
|
|
|
- (id) initWithContentsOfURL: (NSURL*)url
|
|
|
|
encoding: (NSStringEncoding)enc
|
|
|
|
error: (NSError**)error;
|
2010-05-03 06:00:45 +00:00
|
|
|
- (BOOL) writeToFile: (NSString*)path
|
|
|
|
atomically: (BOOL)atomically
|
|
|
|
encoding: (NSStringEncoding)enc
|
|
|
|
error: (NSError**)error;
|
|
|
|
- (BOOL) writeToURL: (NSURL*)url
|
|
|
|
atomically: (BOOL)atomically
|
|
|
|
encoding: (NSStringEncoding)enc
|
|
|
|
error: (NSError**)error;
|
2010-05-02 11:02:26 +00:00
|
|
|
#endif
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5,GS_API_LATEST)
|
2010-02-28 23:37:22 +00:00
|
|
|
- (NSString*)stringByReplacingOccurrencesOfString: (NSString*)replace
|
|
|
|
withString: (NSString*)by
|
|
|
|
options: (NSStringCompareOptions)opts
|
|
|
|
range: (NSRange)searchRange;
|
|
|
|
- (NSString*)stringByReplacingOccurrencesOfString: (NSString*)replace
|
|
|
|
withString: (NSString*)by;
|
2010-12-25 19:31:05 +00:00
|
|
|
- (NSString*) stringByReplacingCharactersInRange: (NSRange)aRange
|
|
|
|
withString: (NSString*)by;
|
2008-03-18 13:55:46 +00:00
|
|
|
#endif
|
1996-11-24 21:00:28 +00:00
|
|
|
- (id) initWithCharactersNoCopy: (unichar*)chars
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length
|
1999-11-26 19:43:43 +00:00
|
|
|
freeWhenDone: (BOOL)flag;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (id) initWithCharacters: (const unichar*)chars
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (id) initWithCStringNoCopy: (char*)byteString
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length
|
1999-11-26 19:43:43 +00:00
|
|
|
freeWhenDone: (BOOL)flag;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (id) initWithCString: (const char*)byteString
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (id) initWithCString: (const char*)byteString;
|
|
|
|
- (id) initWithString: (NSString*)string;
|
2013-07-03 06:46:41 +00:00
|
|
|
- (id) initWithFormat: (NSString*)format, ... NS_FORMAT_FUNCTION(1,2);
|
1995-03-23 03:28:06 +00:00
|
|
|
- (id) initWithFormat: (NSString*)format
|
2013-07-03 06:46:41 +00:00
|
|
|
arguments: (va_list)argList NS_FORMAT_FUNCTION(1,0);
|
1996-11-24 21:00:28 +00:00
|
|
|
- (id) initWithData: (NSData*)data
|
1999-11-26 19:43:43 +00:00
|
|
|
encoding: (NSStringEncoding)encoding;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (id) initWithContentsOfFile: (NSString*)path;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Getting a String's Length
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSUInteger) length;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Accessing Characters
|
2009-02-23 20:42:32 +00:00
|
|
|
- (unichar) characterAtIndex: (NSUInteger)index;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (void) getCharacters: (unichar*)buffer;
|
|
|
|
- (void) getCharacters: (unichar*)buffer
|
1999-11-26 19:43:43 +00:00
|
|
|
range: (NSRange)aRange;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Combining Strings
|
2013-10-29 09:14:45 +00:00
|
|
|
- (NSString*) stringByAppendingFormat: (NSString*)format, ...
|
2013-07-03 06:46:41 +00:00
|
|
|
NS_FORMAT_FUNCTION(1,2);
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByAppendingString: (NSString*)aString;
|
|
|
|
|
|
|
|
// Dividing Strings into Substrings
|
|
|
|
- (NSArray*) componentsSeparatedByString: (NSString*)separator;
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSString*) substringFromIndex: (NSUInteger)index;
|
|
|
|
- (NSString*) substringToIndex: (NSUInteger)index;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Finding Ranges of Characters and Substrings
|
|
|
|
- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet;
|
|
|
|
- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)mask;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSRange) rangeOfCharacterFromSet: (NSCharacterSet*)aSet
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)mask
|
1999-11-26 19:43:43 +00:00
|
|
|
range: (NSRange)aRange;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSRange) rangeOfString: (NSString*)string;
|
|
|
|
- (NSRange) rangeOfString: (NSString*)string
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)mask;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSRange) rangeOfString: (NSString*)aString
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)mask
|
1999-11-26 19:43:43 +00:00
|
|
|
range: (NSRange)aRange;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Determining Composed Character Sequences
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSRange) rangeOfComposedCharacterSequenceAtIndex: (NSUInteger)anIndex;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_2,GS_API_LATEST)
|
|
|
|
/** Returns a copy of the receiver normalised using the KD form.
|
|
|
|
*/
|
|
|
|
- (NSString *) decomposedStringWithCompatibilityMapping;
|
|
|
|
|
|
|
|
/** Returns a copy of the receiver normalised using the D form.
|
|
|
|
*/
|
|
|
|
- (NSString *) decomposedStringWithCanonicalMapping;
|
|
|
|
|
|
|
|
/** Returns a copy of the receiver normalised using the KC form.
|
|
|
|
*/
|
|
|
|
- (NSString *) precomposedStringWithCompatibilityMapping;
|
|
|
|
|
|
|
|
/** Returns a copy of the receiver normalised using the C form.
|
|
|
|
*/
|
|
|
|
- (NSString *) precomposedStringWithCanonicalMapping;
|
|
|
|
#endif
|
|
|
|
|
1996-11-24 21:00:28 +00:00
|
|
|
// Converting String Contents into a Property List
|
2013-07-01 07:08:55 +00:00
|
|
|
- (id) propertyList;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (NSDictionary*) propertyListFromStringsFileFormat;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
1996-11-24 21:00:28 +00:00
|
|
|
// Identifying and Comparing Strings
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSComparisonResult) compare: (NSString*)aString;
|
|
|
|
- (NSComparisonResult) compare: (NSString*)aString
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)mask;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSComparisonResult) compare: (NSString*)aString
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)mask
|
1999-11-26 19:43:43 +00:00
|
|
|
range: (NSRange)aRange;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (BOOL) hasPrefix: (NSString*)aString;
|
|
|
|
- (BOOL) hasSuffix: (NSString*)aString;
|
|
|
|
- (BOOL) isEqual: (id)anObject;
|
|
|
|
- (BOOL) isEqualToString: (NSString*)aString;
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSUInteger) hash;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Getting a Shared Prefix
|
|
|
|
- (NSString*) commonPrefixWithString: (NSString*)aString
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)mask;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Changing Case
|
|
|
|
- (NSString*) capitalizedString;
|
|
|
|
- (NSString*) lowercaseString;
|
|
|
|
- (NSString*) uppercaseString;
|
|
|
|
|
|
|
|
// Getting C Strings
|
|
|
|
- (const char*) cString;
|
2006-10-31 07:05:46 +00:00
|
|
|
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
2005-05-09 09:01:06 +00:00
|
|
|
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_4,GS_API_LATEST) && GS_API_VERSION( 10200,GS_API_LATEST)
|
2005-05-08 07:08:28 +00:00
|
|
|
- (const char*) cStringUsingEncoding: (NSStringEncoding)encoding;
|
2006-02-27 09:35:19 +00:00
|
|
|
- (BOOL) getCString: (char*)buffer
|
2009-02-23 20:42:32 +00:00
|
|
|
maxLength: (NSUInteger)maxLength
|
2005-05-08 07:08:28 +00:00
|
|
|
encoding: (NSStringEncoding)encoding;
|
|
|
|
- (id) initWithCString: (const char*)byteString
|
|
|
|
encoding: (NSStringEncoding)encoding;
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSUInteger) lengthOfBytesUsingEncoding: (NSStringEncoding)encoding;
|
|
|
|
- (NSUInteger) maximumLengthOfBytesUsingEncoding: (NSStringEncoding)encoding;
|
2005-05-09 09:01:06 +00:00
|
|
|
#endif
|
|
|
|
|
2005-05-08 07:08:28 +00:00
|
|
|
#endif
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSUInteger) cStringLength;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (void) getCString: (char*)buffer;
|
|
|
|
- (void) getCString: (char*)buffer
|
2009-02-23 20:42:32 +00:00
|
|
|
maxLength: (NSUInteger)maxLength;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (void) getCString: (char*)buffer
|
2009-02-23 20:42:32 +00:00
|
|
|
maxLength: (NSUInteger)maxLength
|
1999-11-26 19:43:43 +00:00
|
|
|
range: (NSRange)aRange
|
|
|
|
remainingRange: (NSRange*)leftoverRange;
|
1995-03-23 03:28:06 +00:00
|
|
|
|
|
|
|
// Getting Numeric Values
|
|
|
|
- (float) floatValue;
|
|
|
|
- (int) intValue;
|
|
|
|
|
|
|
|
// Working With Encodings
|
|
|
|
- (BOOL) canBeConvertedToEncoding: (NSStringEncoding)encoding;
|
|
|
|
- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding;
|
|
|
|
- (NSData*) dataUsingEncoding: (NSStringEncoding)encoding
|
1999-11-26 19:43:43 +00:00
|
|
|
allowLossyConversion: (BOOL)flag;
|
1996-11-24 21:00:28 +00:00
|
|
|
+ (NSStringEncoding) defaultCStringEncoding;
|
|
|
|
- (NSString*) description;
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSStringEncoding) fastestEncoding;
|
|
|
|
- (NSStringEncoding) smallestEncoding;
|
|
|
|
|
2005-03-21 12:29:02 +00:00
|
|
|
/**
|
|
|
|
* Attempts to complete this string as a path in the filesystem by finding
|
|
|
|
* a unique completion if one exists and returning it by reference in
|
|
|
|
* outputName (which must be a non-nil pointer), or if it finds a set of
|
|
|
|
* completions they are returned by reference in outputArray, if it is non-nil.
|
|
|
|
* filterTypes can be an array of strings specifying extensions to consider;
|
|
|
|
* files without these extensions will be ignored and will not constitute
|
|
|
|
* completions. Returns 0 if no match found, else a positive number that is
|
|
|
|
* only accurate if outputArray was non-nil.
|
|
|
|
*/
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSUInteger) completePathIntoString: (NSString**)outputName
|
|
|
|
caseSensitive: (BOOL)flag
|
|
|
|
matchesIntoArray: (NSArray**)outputArray
|
|
|
|
filterTypes: (NSArray*)filterTypes;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts the receiver to a C string path expressed in the character
|
|
|
|
* encoding appropriate for the local host file system. This string will be
|
|
|
|
* automatically freed soon after it is returned, so copy it if you need it
|
2005-10-23 14:53:03 +00:00
|
|
|
* for long.<br />
|
2005-11-05 07:00:49 +00:00
|
|
|
* NB. On mingw32 systems the filesystem representation of a path is a 16-bit
|
2005-11-05 05:58:43 +00:00
|
|
|
* unicode character string, so you should only pass the value returned by
|
2005-11-05 16:20:19 +00:00
|
|
|
* this method to functions expecting wide characters.<br />
|
|
|
|
* This method uses [NSFileManager-fileSystemRepresentationWithPath:] to
|
|
|
|
* perform the conversion.
|
2005-03-21 12:29:02 +00:00
|
|
|
*/
|
2005-11-28 15:41:35 +00:00
|
|
|
- (const GSNativeChar*) fileSystemRepresentation;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
2005-11-05 07:00:49 +00:00
|
|
|
/**
|
|
|
|
* Converts the receiver to a C string path using the character encoding
|
|
|
|
* appropriate to the local file system. This string will be stored
|
2005-11-05 16:20:19 +00:00
|
|
|
* into buffer if it is shorter (number of characters) than size,
|
|
|
|
* otherwise NO is returned.<br />
|
2005-11-05 07:00:49 +00:00
|
|
|
* NB. On mingw32 systems the filesystem representation of a path is a 16-bit
|
|
|
|
* unicode character string, so the buffer you pass to this method must be
|
2005-11-05 16:20:19 +00:00
|
|
|
* twice as many bytes as the size (number of characters) you expect to
|
|
|
|
* receive.<br />
|
|
|
|
* This method uses [NSFileManager-fileSystemRepresentationWithPath:] to
|
|
|
|
* perform the conversion.
|
2005-11-05 07:00:49 +00:00
|
|
|
*/
|
2005-11-28 15:41:35 +00:00
|
|
|
- (BOOL) getFileSystemRepresentation: (GSNativeChar*)buffer
|
2009-02-23 20:42:32 +00:00
|
|
|
maxLength: (NSUInteger)size;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a string containing the last path component of the receiver.<br />
|
|
|
|
* The path component is the last non-empty substring delimited by the ends
|
|
|
|
* of the string, or by path separator characters.<br />
|
|
|
|
* If the receiver only contains a root part, this method returns it.<br />
|
|
|
|
* If there are no non-empty substrings, this returns an empty string.<br />
|
|
|
|
* NB. In a windows UNC path, the host and share specification is treated as
|
|
|
|
* a single path component, even though it contains separators.
|
|
|
|
* So a string of the form '//host/share' may be returned.<br />
|
|
|
|
* Other special cases are apply when the string is the root.
|
|
|
|
* <example>
|
|
|
|
* @"foo/bar" produces @"bar"
|
|
|
|
* @"foo/bar/" produces @"bar"
|
|
|
|
* @"/foo/bar" produces @"bar"
|
|
|
|
* @"/foo" produces @"foo"
|
|
|
|
* @"/" produces @"/" (root is a special case)
|
|
|
|
* @"" produces @""
|
|
|
|
* @"C:/" produces @"C:/" (root is a special case)
|
|
|
|
* @"C:" produces @"C:"
|
|
|
|
* @"//host/share/" produces @"//host/share/" (root is a special case)
|
|
|
|
* @"//host/share" produces @"//host/share"
|
|
|
|
* </example>
|
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) lastPathComponent;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a new string containing the path extension of the receiver.<br />
|
|
|
|
* The path extension is a suffix on the last path component which starts
|
|
|
|
* with the extension separator (a '.') (for example .tiff is the
|
|
|
|
* pathExtension for /foo/bar.tiff).<br />
|
|
|
|
* Returns an empty string if no such extension exists.
|
|
|
|
* <example>
|
|
|
|
* @"a.b" produces @"b"
|
|
|
|
* @"a.b/" produces @"b"
|
|
|
|
* @"/path/a.ext" produces @"ext"
|
|
|
|
* @"/path/a." produces @""
|
|
|
|
* @"/path/.a" produces @"" (.a is not an extension to a file)
|
|
|
|
* @".a" produces @"" (.a is not an extension to a file)
|
|
|
|
* </example>
|
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) pathExtension;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a string where a prefix of the current user's home directory is
|
|
|
|
* abbreviated by '~', or returns the receiver (or an immutable copy) if
|
|
|
|
* it was not found to have the home directory as a prefix.
|
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByAbbreviatingWithTildeInPath;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a new string with the path component given in aString
|
|
|
|
* appended to the receiver.<br />
|
|
|
|
* This removes trailing path separators from the receiver and the root
|
|
|
|
* part from aString and replaces them with a single slash as a path
|
|
|
|
* separator.<br />
|
|
|
|
* Also condenses any multiple separator sequences in the result into
|
|
|
|
* single path separators.
|
|
|
|
* <example>
|
|
|
|
* @"" with @"file" produces @"file"
|
|
|
|
* @"path" with @"file" produces @"path/file"
|
|
|
|
* @"/" with @"file" produces @"/file"
|
|
|
|
* @"/" with @"file" produces @"/file"
|
|
|
|
* @"/" with @"/file" produces @"/file"
|
|
|
|
* @"path with @"C:/file" produces @"path/file"
|
|
|
|
* </example>
|
2011-06-01 14:45:52 +00:00
|
|
|
* NB. Do not use this method to modify strings other than filesystem
|
|
|
|
* paths as the behavior in such cases is undefined ... for instance
|
|
|
|
* the string may have repeated slashes or slash-dot-slash sequences
|
|
|
|
* removed.
|
2005-03-21 12:29:02 +00:00
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByAppendingPathComponent: (NSString*)aString;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a new string with the path extension given in aString
|
|
|
|
* appended to the receiver after an extensionSeparator ('.').<br />
|
|
|
|
* If the receiver has trailing path separator characters, they are
|
|
|
|
* stripped before the extension separator is added.<br />
|
|
|
|
* If the receiver contains no components after the root, the extension
|
2005-11-06 13:53:40 +00:00
|
|
|
* cannot be appended (an extension can only be appended to a file name),
|
2005-03-21 12:29:02 +00:00
|
|
|
* so a copy of the unmodified receiver is returned.<br />
|
|
|
|
* An empty string may be used as an extension ... in which case the extension
|
|
|
|
* separator is appended.<br />
|
|
|
|
* This behavior mirrors that of the -stringByDeletingPathExtension method.
|
|
|
|
* <example>
|
|
|
|
* @"Mail" with @"app" produces @"Mail.app"
|
|
|
|
* @"Mail.app" with @"old" produces @"Mail.app.old"
|
|
|
|
* @"file" with @"" produces @"file."
|
|
|
|
* @"/" with @"app" produces @"/" (no file name to append to)
|
|
|
|
* @"" with @"app" produces @"" (no file name to append to)
|
|
|
|
* </example>
|
2011-06-01 14:45:52 +00:00
|
|
|
* NB. Do not use this method to modify strings other than filesystem
|
|
|
|
* paths as the behavior in such cases is undefined ... for instance
|
|
|
|
* the string may have repeated slashes or slash-dot-slash sequences
|
|
|
|
* removed.
|
2005-03-21 12:29:02 +00:00
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByAppendingPathExtension: (NSString*)aString;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a new string with the last path component (including any final
|
|
|
|
* path separators) removed from the receiver.<br />
|
|
|
|
* A string without a path component other than the root is returned
|
|
|
|
* without alteration.<br />
|
|
|
|
* See -lastPathComponent for a definition of a path component.
|
|
|
|
* <example>
|
2009-03-29 07:32:11 +00:00
|
|
|
* @"hello/there" produces @"hello" (a relative path)
|
|
|
|
* @"hello" produces @"" (a relative path)
|
|
|
|
* @"/hello" produces @"/" (an absolute unix path)
|
|
|
|
* @"/" produces @"/" (an absolute unix path)
|
|
|
|
* @"C:file" produces @"C:" (a relative windows path)
|
|
|
|
* @"C:" produces @"C:" (a relative windows path)
|
|
|
|
* @"C:/file" produces @"C:/" (an absolute windows path)
|
|
|
|
* @"C:/" produces @"C:/" (an absolute windows path)
|
|
|
|
* @"//host/share/file" produces @"//host/share/" (a UNC path)
|
|
|
|
* @"//host/share/" produces @"//host/share/" (a UNC path)
|
|
|
|
* @"//path/file" produces @"//path" (an absolute Unix path)
|
2005-04-01 10:57:35 +00:00
|
|
|
* </example>
|
2011-06-01 14:45:52 +00:00
|
|
|
* NB. Do not use this method to modify strings other than filesystem
|
|
|
|
* paths as the behavior in such cases is undefined ... for instance
|
|
|
|
* the string may have repeated slashes or slash-dot-slash sequences
|
|
|
|
* removed.
|
2005-03-21 12:29:02 +00:00
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByDeletingLastPathComponent;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a new string with the path extension removed from the receiver.<br />
|
|
|
|
* Strips any trailing path separators before checking for the extension
|
|
|
|
* separator.<br />
|
|
|
|
* NB. This method does not consider a string which contains nothing
|
|
|
|
* between the root part and the extension separator ('.') to be a path
|
|
|
|
* extension. This mirrors the behavior of the -stringByAppendingPathExtension:
|
|
|
|
* method.
|
|
|
|
* <example>
|
|
|
|
* @"file.ext" produces @"file"
|
|
|
|
* @"/file.ext" produces @"/file"
|
|
|
|
* @"/file.ext/" produces @"/file" (trailing path separators are ignored)
|
|
|
|
* @"/file..ext" produces @"/file."
|
|
|
|
* @"/file." produces @"/file"
|
|
|
|
* @"/.ext" produces @"/.ext" (there is no file to strip from)
|
|
|
|
* @".ext" produces @".ext" (there is no file to strip from)
|
|
|
|
* </example>
|
2011-06-01 14:45:52 +00:00
|
|
|
* NB. Do not use this method to modify strings other than filesystem
|
|
|
|
* paths as the behavior in such cases is undefined ... for instance
|
|
|
|
* the string may have repeated slashes or slash-dot-slash sequences
|
|
|
|
* removed.
|
2005-03-21 12:29:02 +00:00
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByDeletingPathExtension;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a string created by expanding the initial tilde ('~') and any
|
|
|
|
* following username to be the home directory of the current user or the
|
|
|
|
* named user.<br />
|
|
|
|
* Returns the receiver or an immutable copy if it was not possible to
|
|
|
|
* expand it.
|
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByExpandingTildeInPath;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
2011-03-06 10:09:37 +00:00
|
|
|
* First calls -stringByExpandingTildeInPath if necessary.<br />
|
2005-03-21 12:29:02 +00:00
|
|
|
* Replaces path string by one in which path components representing symbolic
|
|
|
|
* links have been replaced by their referents.<br />
|
2011-03-06 10:09:37 +00:00
|
|
|
* Removes a leading '/private' if the result is valid.<br />
|
2005-11-06 13:53:40 +00:00
|
|
|
* If links cannot be resolved, returns an unmodified copy of the receiver.
|
2005-03-21 12:29:02 +00:00
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByResolvingSymlinksInPath;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a standardised form of the receiver, with unnecessary parts
|
|
|
|
* removed, tilde characters expanded, and symbolic links resolved
|
|
|
|
* where possible.<br />
|
|
|
|
* NB. Refers to the local filesystem to resolve symbolic links in
|
|
|
|
* absolute paths, and to expand tildes ... so this can't be used for
|
|
|
|
* general path manipulation.<br />
|
|
|
|
* If the string is an invalid path, the unmodified receiver is returned.<br />
|
|
|
|
* <p>
|
|
|
|
* Uses -stringByExpandingTildeInPath to expand tilde expressions.<br />
|
|
|
|
* Simplifies '//' and '/./' sequences and removes trailing '/' or '.'.<br />
|
|
|
|
* </p>
|
|
|
|
* <p>
|
|
|
|
* For absolute paths, uses -stringByResolvingSymlinksInPath to resolve
|
|
|
|
* any links, then gets rid of '/../' sequences and removes any '/private'
|
|
|
|
* prefix.
|
|
|
|
* </p>
|
|
|
|
*/
|
1995-03-23 03:28:06 +00:00
|
|
|
- (NSString*) stringByStandardizingPath;
|
|
|
|
|
2002-08-30 08:36:20 +00:00
|
|
|
|
1997-05-03 18:05:21 +00:00
|
|
|
// for methods working with decomposed strings
|
|
|
|
- (int) _baseLength;
|
|
|
|
|
2006-10-31 07:05:46 +00:00
|
|
|
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
2005-03-21 12:29:02 +00:00
|
|
|
/**
|
|
|
|
* Concatenates the path components in the array and returns the result.<br />
|
|
|
|
* This method does not remove empty path components, but does recognize an
|
|
|
|
* empty initial component as a special case meaning that the string
|
|
|
|
* returned will begin with a slash.
|
|
|
|
*/
|
1998-01-21 15:09:22 +00:00
|
|
|
+ (NSString*) pathWithComponents: (NSArray*)components;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns YES if the receiver represents an absolute path ...<br />
|
|
|
|
* Returns NO otherwise.<br />
|
|
|
|
* An absolute path in unix mode is one which begins
|
|
|
|
* with a slash or tilde.<br />
|
2005-03-31 19:47:41 +00:00
|
|
|
* In windows mode a drive specification (eg C:) followed by a slash or
|
|
|
|
* backslash, is an absolute path, as is any path beginning with a tilde.<br />
|
|
|
|
* In any mode a UNC path (//host/share...) is always absolute.<br />
|
2008-11-09 10:11:18 +00:00
|
|
|
* In the default gnustep path handling mode,
|
|
|
|
* the rules are the same as for windows,
|
2005-03-21 12:29:02 +00:00
|
|
|
* except that a path whose root is a slash denotes an absolute path
|
|
|
|
* when running on unix and a relative path when running under windows.
|
|
|
|
*/
|
1998-01-21 15:09:22 +00:00
|
|
|
- (BOOL) isAbsolutePath;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the path components of the receiver separated into an array.<br />
|
|
|
|
* If the receiver begins with a root sequence such as the path separator
|
|
|
|
* character (or a drive specification in windows) then that is used as the
|
|
|
|
* first element in the array.<br />
|
|
|
|
* Empty components are removed.<br />
|
2006-02-10 10:06:28 +00:00
|
|
|
* If a trailing path separator (which was not part of the root) was present,
|
|
|
|
* it is added as the last element in the array.
|
2005-03-21 12:29:02 +00:00
|
|
|
*/
|
1998-01-21 15:09:22 +00:00
|
|
|
- (NSArray*) pathComponents;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of strings made by appending the values in paths
|
|
|
|
* to the receiver.
|
|
|
|
*/
|
1998-01-21 15:09:22 +00:00
|
|
|
- (NSArray*) stringsByAppendingPaths: (NSArray*)paths;
|
2005-03-21 12:29:02 +00:00
|
|
|
|
2013-07-03 06:46:41 +00:00
|
|
|
+ (NSString*) localizedStringWithFormat: (NSString*)format, ...
|
|
|
|
NS_FORMAT_FUNCTION(1,2);
|
2000-06-23 14:52:22 +00:00
|
|
|
|
2005-05-08 07:08:28 +00:00
|
|
|
+ (id) stringWithString: (NSString*)aString;
|
2002-03-13 13:46:12 +00:00
|
|
|
+ (id) stringWithContentsOfURL: (NSURL*)url;
|
2000-09-22 13:45:58 +00:00
|
|
|
+ (id) stringWithUTF8String: (const char*)bytes;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (id) initWithFormat: (NSString*)format
|
2013-10-29 09:14:45 +00:00
|
|
|
locale: (NSDictionary*)locale, ... NS_FORMAT_FUNCTION(1,3);
|
1996-11-24 21:00:28 +00:00
|
|
|
- (id) initWithFormat: (NSString*)format
|
2002-03-13 13:46:12 +00:00
|
|
|
locale: (NSDictionary*)locale
|
2013-07-03 06:46:41 +00:00
|
|
|
arguments: (va_list)argList NS_FORMAT_FUNCTION(1,0);
|
2000-09-22 13:45:58 +00:00
|
|
|
- (id) initWithUTF8String: (const char *)bytes;
|
2002-03-13 13:46:12 +00:00
|
|
|
- (id) initWithContentsOfURL: (NSURL*)url;
|
1997-12-08 20:04:16 +00:00
|
|
|
- (NSString*) substringWithRange: (NSRange)aRange;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (NSComparisonResult) caseInsensitiveCompare: (NSString*)aString;
|
2002-08-30 08:36:20 +00:00
|
|
|
- (NSComparisonResult) compare: (NSString*)string
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)mask
|
2002-08-30 08:36:20 +00:00
|
|
|
range: (NSRange)compareRange
|
2012-03-06 02:08:47 +00:00
|
|
|
locale: (id)locale;
|
2002-08-30 08:36:20 +00:00
|
|
|
- (NSComparisonResult) localizedCompare: (NSString *)string;
|
|
|
|
- (NSComparisonResult) localizedCaseInsensitiveCompare: (NSString *)string;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (BOOL) writeToFile: (NSString*)filename
|
1999-08-25 14:47:19 +00:00
|
|
|
atomically: (BOOL)useAuxiliaryFile;
|
2010-09-10 13:20:06 +00:00
|
|
|
- (BOOL) writeToURL: (NSURL*)url atomically: (BOOL)atomically;
|
1996-11-24 21:00:28 +00:00
|
|
|
- (double) doubleValue;
|
1999-11-26 19:43:43 +00:00
|
|
|
+ (NSStringEncoding*) availableStringEncodings;
|
|
|
|
+ (NSString*) localizedNameOfStringEncoding: (NSStringEncoding)encoding;
|
2009-02-23 20:42:32 +00:00
|
|
|
- (void) getLineStart: (NSUInteger *)startIndex
|
|
|
|
end: (NSUInteger *)lineEndIndex
|
|
|
|
contentsEnd: (NSUInteger *)contentsEndIndex
|
1999-11-26 19:43:43 +00:00
|
|
|
forRange: (NSRange)aRange;
|
|
|
|
- (NSRange) lineRangeForRange: (NSRange)aRange;
|
1999-08-25 14:47:19 +00:00
|
|
|
- (const char*) lossyCString;
|
2004-07-04 09:25:50 +00:00
|
|
|
- (NSString*) stringByAddingPercentEscapesUsingEncoding: (NSStringEncoding)e;
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSString*) stringByPaddingToLength: (NSUInteger)newLength
|
2002-08-30 08:36:20 +00:00
|
|
|
withString: (NSString*)padString
|
2009-02-23 20:42:32 +00:00
|
|
|
startingAtIndex: (NSUInteger)padIndex;
|
2004-07-04 09:25:50 +00:00
|
|
|
- (NSString*) stringByReplacingPercentEscapesUsingEncoding: (NSStringEncoding)e;
|
2002-08-30 08:36:20 +00:00
|
|
|
- (NSString*) stringByTrimmingCharactersInSet: (NSCharacterSet*)aSet;
|
2000-09-12 23:08:40 +00:00
|
|
|
- (const char *)UTF8String;
|
1996-11-24 21:00:28 +00:00
|
|
|
#endif
|
|
|
|
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_3,GS_API_LATEST)
|
2008-06-06 13:57:06 +00:00
|
|
|
/** Not implemented */
|
2011-10-17 10:59:02 +00:00
|
|
|
- (void) getParagraphStart: (NSUInteger *)startIndex
|
|
|
|
end: (NSUInteger *)parEndIndex
|
|
|
|
contentsEnd: (NSUInteger *)contentsEndIndex
|
2008-06-06 13:57:06 +00:00
|
|
|
forRange: (NSRange)range;
|
|
|
|
/** Not implemented */
|
|
|
|
- (NSRange) paragraphRangeForRange: (NSRange)range;
|
|
|
|
#endif
|
|
|
|
|
2013-07-01 07:08:55 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_5,GS_API_LATEST)
|
2009-08-24 07:07:36 +00:00
|
|
|
/**
|
|
|
|
* Returns YES when scanning the receiver's text from left to right
|
|
|
|
* finds an initial digit in the range 1-9 or a letter in the set
|
|
|
|
* ('Y', 'y', 'T', 't').<br />
|
|
|
|
* Any trailing characters are ignored.<br />
|
|
|
|
* Any leading whitespace or zeros or signs are also ignored.<br />
|
|
|
|
* Returns NO if the above conditions are not met.
|
|
|
|
*/
|
2008-06-06 13:57:06 +00:00
|
|
|
- (BOOL) boolValue;
|
|
|
|
- (NSArray *) componentsSeparatedByCharactersInSet: (NSCharacterSet *)separator;
|
|
|
|
- (NSInteger) integerValue;
|
|
|
|
- (long long) longLongValue;
|
|
|
|
/** Not implemented */
|
|
|
|
- (NSRange) rangeOfComposedCharacterSequencesForRange: (NSRange)range;
|
|
|
|
/** Not implemented */
|
|
|
|
- (NSRange) rangeOfString: (NSString *)aString
|
|
|
|
options: (NSStringCompareOptions)mask
|
|
|
|
range: (NSRange)searchRange
|
|
|
|
locale: (NSLocale *)locale;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-05-06 22:04:07 +00:00
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_10,GS_API_LATEST)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns YES if the receiver contains string, otherwise, NO.
|
|
|
|
*/
|
|
|
|
- (BOOL) containsString: (NSString *)string;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2006-10-31 07:05:46 +00:00
|
|
|
#if OS_API_VERSION(GS_API_NONE, GS_API_NONE)
|
2002-03-13 13:46:12 +00:00
|
|
|
+ (Class) constantStringClass;
|
2006-10-31 07:05:46 +00:00
|
|
|
#endif /* GS_API_NONE */
|
1996-11-24 18:30:48 +00:00
|
|
|
|
1995-04-03 01:42:02 +00:00
|
|
|
@end
|
|
|
|
|
2002-03-13 13:46:12 +00:00
|
|
|
@interface NSMutableString : NSString
|
1995-04-03 01:42:02 +00:00
|
|
|
|
|
|
|
// Creating Temporary Strings
|
1999-11-26 20:06:17 +00:00
|
|
|
+ (id) string;
|
2002-03-13 13:46:12 +00:00
|
|
|
+ (id) stringWithCharacters: (const unichar*)characters
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length;
|
1999-11-26 20:06:17 +00:00
|
|
|
+ (id) stringWithCString: (const char*)byteString
|
2009-02-23 20:42:32 +00:00
|
|
|
length: (NSUInteger)length;
|
2005-05-08 07:08:28 +00:00
|
|
|
+ (id) stringWithCString: (const char*)byteString;
|
2013-10-29 09:14:45 +00:00
|
|
|
+ (id) stringWithFormat: (NSString*)format, ... NS_FORMAT_FUNCTION(1,2);
|
2002-03-13 13:46:12 +00:00
|
|
|
+ (id) stringWithContentsOfFile: (NSString*)path;
|
2009-02-23 20:42:32 +00:00
|
|
|
+ (NSMutableString*) stringWithCapacity: (NSUInteger)capacity;
|
1995-04-03 01:42:02 +00:00
|
|
|
|
|
|
|
// Initializing Newly Allocated Strings
|
2009-02-23 20:42:32 +00:00
|
|
|
- (id) initWithCapacity: (NSUInteger)capacity;
|
1995-04-03 01:42:02 +00:00
|
|
|
|
|
|
|
// Modify A String
|
2013-07-03 06:46:41 +00:00
|
|
|
- (void) appendFormat: (NSString*)format, ... NS_FORMAT_FUNCTION(1,2);
|
1996-11-24 21:00:28 +00:00
|
|
|
- (void) appendString: (NSString*)aString;
|
1995-04-03 01:42:02 +00:00
|
|
|
- (void) deleteCharactersInRange: (NSRange)range;
|
2009-02-23 20:42:32 +00:00
|
|
|
- (void) insertString: (NSString*)aString atIndex: (NSUInteger)loc;
|
1995-04-03 01:42:02 +00:00
|
|
|
- (void) replaceCharactersInRange: (NSRange)range
|
1999-11-26 19:43:43 +00:00
|
|
|
withString: (NSString*)aString;
|
2009-02-23 20:42:32 +00:00
|
|
|
- (NSUInteger) replaceOccurrencesOfString: (NSString*)replace
|
2003-01-26 19:50:42 +00:00
|
|
|
withString: (NSString*)by
|
2009-02-23 20:42:32 +00:00
|
|
|
options: (NSUInteger)opts
|
2003-01-26 19:50:42 +00:00
|
|
|
range: (NSRange)searchRange;
|
1995-04-03 01:42:02 +00:00
|
|
|
- (void) setString: (NSString*)aString;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2002-03-13 09:58:43 +00:00
|
|
|
/**
|
|
|
|
* <p>The NXConstantString class is used to hold constant 8-bit character
|
|
|
|
* string objects produced by the compiler where it sees @"..." in the
|
|
|
|
* source. The compiler generates the instances of this class - which
|
|
|
|
* has three instance variables -</p>
|
|
|
|
* <list>
|
|
|
|
* <item>a pointer to the class (this is the sole ivar of NSObject)</item>
|
|
|
|
* <item>a pointer to the 8-bit data</item>
|
|
|
|
* <item>the length of the string</item>
|
|
|
|
* </list>
|
|
|
|
* <p>In older versions of the compiler, the isa variable is always set to
|
|
|
|
* the NXConstantString class. In newer versions a compiler option was
|
|
|
|
* added for GNUstep, to permit the isa variable to be set to another
|
|
|
|
* class, and GNUstep uses this to avoid conflicts with the default
|
|
|
|
* implementation of NXConstantString in the ObjC runtime library (the
|
2005-11-06 13:53:40 +00:00
|
|
|
* preprocessor is used to change all occurrences of NXConstantString
|
2002-03-13 09:58:43 +00:00
|
|
|
* in the source code to NSConstantString).</p>
|
|
|
|
* <p>Since GNUstep will generally use the GNUstep extension to the
|
2004-06-22 22:27:39 +00:00
|
|
|
* compiler, you should never refer to the constant string class by
|
2002-03-13 09:58:43 +00:00
|
|
|
* name, but should use the [NSString+constantStringClass] method to
|
|
|
|
* get the actual class being used for constant strings.</p>
|
|
|
|
* What follows is a dummy declaration of the class to keep the compiler
|
|
|
|
* happy.
|
1999-08-25 14:47:19 +00:00
|
|
|
*/
|
2000-10-09 04:41:18 +00:00
|
|
|
@interface NXConstantString : NSString
|
|
|
|
{
|
2011-10-31 08:12:26 +00:00
|
|
|
@public
|
2002-03-13 09:58:43 +00:00
|
|
|
const char * const nxcsptr;
|
|
|
|
const unsigned int nxcslen;
|
2000-10-09 04:41:18 +00:00
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2002-03-12 15:25:37 +00:00
|
|
|
#ifdef NeXT_RUNTIME
|
2004-07-29 15:30:47 +00:00
|
|
|
/** For internal use with NeXT runtime;
|
|
|
|
needed, until Apple Radar 2870817 is fixed. */
|
2002-01-03 20:39:12 +00:00
|
|
|
extern struct objc_class _NSConstantStringClassReference;
|
|
|
|
#endif
|
1995-03-18 17:15:15 +00:00
|
|
|
|
2006-09-13 10:20:49 +00:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-02-20 17:16:23 +00:00
|
|
|
#if !NO_GNUSTEP && !defined(GNUSTEP_BASE_INTERNAL)
|
2010-02-18 11:40:58 +00:00
|
|
|
#import <GNUstepBase/NSString+GNUstepBase.h>
|
|
|
|
#import <GNUstepBase/NSMutableString+GNUstepBase.h>
|
|
|
|
#endif
|
|
|
|
|
1996-04-17 19:36:35 +00:00
|
|
|
#endif /* __NSString_h_GNUSTEP_BASE_INCLUDE */
|