1) Right(char ch) now returns the part of the string after the last
occurence of ch _without_ ch itself (like Left(char ch)) 2) Added wxString::Scanf() and wxString::ScanfV() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -349,12 +349,16 @@ public:
|
||||
//@}
|
||||
//@}
|
||||
|
||||
/** @name formated output */
|
||||
/** @name formated input/output */
|
||||
//@{
|
||||
/// as sprintf(), returns the number of characters written or < 0 on error
|
||||
int Printf(const char *pszFormat, ...);
|
||||
/// as vprintf(), returns the number of characters written or < 0 on error
|
||||
int PrintfV(const char* pszFormat, va_list argptr);
|
||||
/// as sscanf()
|
||||
int Scanf(const char *pszFormat, ...) const;
|
||||
/// as vsscanf()
|
||||
int ScanfV(const char *pszFormat, va_list argptr) const;
|
||||
//@}
|
||||
|
||||
// get writable buffer of at least nLen characters
|
||||
|
Reference in New Issue
Block a user