mirror of
https://github.com/znc/znc.git
synced 2026-05-06 13:32:36 +02:00
Add CString::StartsWith and CString::EndsWith
This commit is contained in:
@@ -478,6 +478,17 @@ public:
|
||||
*/
|
||||
CString TrimSuffix_n(const CString& sSuffix) const;
|
||||
|
||||
/** Check whether the string starts with a given prefix.
|
||||
* @param sPrefix The prefix.
|
||||
* @return True if the string starts with prefix, false otherwise.
|
||||
*/
|
||||
bool StartsWith(const CString& sPrefix) const;
|
||||
/** Check whether the string ends with a given suffix.
|
||||
* @param sSuffix The suffix.
|
||||
* @return True if the string ends with suffix, false otherwise.
|
||||
*/
|
||||
bool EndsWith(const CString& sSuffix) const;
|
||||
|
||||
/** Remove characters from the beginning of this string.
|
||||
* @param uLen The number of characters to remove.
|
||||
* @return true if this string was modified.
|
||||
|
||||
@@ -1092,6 +1092,14 @@ bool CString::TrimSuffix(const CString& sSuffix) {
|
||||
}
|
||||
}
|
||||
|
||||
bool CString::StartsWith(const CString& sPrefix) const {
|
||||
return Left(sPrefix.length()).Equals(sPrefix);
|
||||
}
|
||||
|
||||
bool CString::EndsWith(const CString& sSuffix) const {
|
||||
return Right(sSuffix.length()).Equals(sSuffix);
|
||||
}
|
||||
|
||||
|
||||
CString CString::TrimPrefix_n(const CString& sPrefix) const {
|
||||
CString sRet = *this;
|
||||
|
||||
Reference in New Issue
Block a user