Subversion Repositories spk

Rev

Rev 243 | Rev 284 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 243 Rev 273
Line 106... Line 106...
106
	const WString &operator= ( unsigned long l );
106
	const WString &operator= ( unsigned long l );
107
	const WString &operator= ( float l );
107
	const WString &operator= ( float l );
108
	const WString &operator= ( double l );
108
	const WString &operator= ( double l );
109
 
109
 
110
	// subscript operators
110
	// subscript operators
111
	const wchar_t operator[] ( int num ) const;
111
	const wchar_t operator[] (int num) const;
112
	wchar_t &operator[] ( int num );
112
	wchar_t &operator[] (int num);
113
 
113
 
114
	// addition operators
114
	// addition operators
115
	WString operator+ (const wchar_t* str) const;
115
	WString operator+ (const wchar_t* str) const;
116
	WString operator+ (const char* str) const;
116
	WString operator+ (const char* str) const;
117
	WString operator+ ( const std::wstring &str ) const;
117
	WString operator+ ( const std::wstring &str ) const;
Line 162... Line 162...
162
	WString word(int word) const;
162
	WString word(int word) const;
163
	WString words(int from, int to = 0) const;
163
	WString words(int from, int to = 0) const;
164
	WString addToken(const wchar_t *token, const Utils::WString &str) const;
164
	WString addToken(const wchar_t *token, const Utils::WString &str) const;
165
	
165
	
166
	// find/replacement
166
	// find/replacement
167
	int findPos(const WString &find, int iStartPos = 0) const;
167
	long findPos(const WString &find, int iStartPos = 0) const;
168
	WString findReplace(const WString &find, const WString &replace ) const;
168
	WString findReplace(const WString &find, const WString &replace ) const;
169
	WString remove(wchar_t c) const;
169
	WString remove(wchar_t c) const;
170
	const WString &removeChar(wchar_t c);
170
	const WString &removeChar(wchar_t c);
171
	const WString &removeChar(const wchar_t *cs);
171
	const WString &removeChar(const wchar_t *cs);
172
	WString findRemove(const WString &find) const;
172
	WString findRemove(const WString &find) const;