本文整理汇总了C++中CStrRef::rfind方法的典型用法代码示例。如果您正苦于以下问题:C++ CStrRef::rfind方法的具体用法?C++ CStrRef::rfind怎么用?C++ CStrRef::rfind使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CStrRef
的用法示例。
在下文中一共展示了CStrRef::rfind方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: f_strripos
Variant f_strripos(CStrRef haystack, CVarRef needle, int offset /* = 0 */) {
int pos;
if (needle.isString()) {
pos = haystack.rfind(needle.toString(), offset, false);
} else {
pos = haystack.rfind(needle.toByte(), offset, false);
}
if (pos >= 0) return pos;
return false;
}
示例2: parse_host
// Extract host:port pair.
// 192.168.1.1:80 -> 192.168.1.0 80
// [2a03:2880::1]:80 -> [2a03:2880::1] 80
static void parse_host(CStrRef address, String &host, int &port) {
if (address.find('[') != std::string::npos) {
auto epos = address.rfind(']');
if (epos != std::string::npos) {
auto cpos = address.rfind(':', epos);
if (cpos != std::string::npos) {
port = address.substr(cpos + 1).toInt16();
}
}
host = address.substr(0, epos + 1);
} else {
auto cpos = address.rfind(':');
if (cpos != std::string::npos) {
host = address.substr(0, cpos);
port = address.substr(cpos + 1).toInt16();
} else {
host = address;
port = 0;
}
}
}