Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Developing U++ » U++ TheIDE and Library: Releases and ChangeLogs » New [W]String utility methods
New [W]String utility methods [message #7422] Thu, 28 December 2006 15:13
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
String::
bool StartsWith(const T *s, int len) const;
bool StartsWith(const T *s) const { return StartsWith(s, strlen(s)); }
bool StartsWith(const S& s) const { return StartsWith(s, s.GetLength()); }

bool EndsWith(const T *s, int len) const;
bool EndsWith(const T *s) const { return EndsWith(s, strlen(s)); }
bool EndsWith(const S& s) const { return EndsWith(s, s.GetLength()); }

(To Sandor Hojtsy: Sorry for delay... Smile
Previous Topic: PCRE now in plugin
Next Topic: Chameleon refactored...
Goto Forum:
  


Current Time: Sat May 04 03:09:15 CEST 2024

Total time taken to generate the page: 0.01497 seconds