Subversion Repositories spk

Rev

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

Rev 10 Rev 13
Line 121... Line 121...
121
	bool isin(const String &str, bool bCaseSensative = false) const;
121
	bool isin(const String &str, bool bCaseSensative = false) const;
122
	bool isin(char c, bool bCaseSensative = false) const;
122
	bool isin(char c, bool bCaseSensative = false) const;
123
 
123
 
124
	String left(long num) const;
124
	String left(long num) const;
125
	String right(int num) const;
125
	String right(int num) const;
-
 
126
 
-
 
127
	bool isNumber(bool integer = false) const;
-
 
128
	bool isCharNumber(int c) const;
126
 
129
 
127
private:
130
private:
-
 
131
	bool _isCharNumber(char c) const;
128
	std::string::size_type _token_nextPos(const char *token, std::string::size_type curPos) const;
132
	std::string::size_type _token_nextPos(const char *token, std::string::size_type curPos) const;
129
};
133
};
130
 
134
 
131
String operator+(const char *str1, const String &str2);
135
String operator+(const char *str1, const String &str2);
132
}
136
}