public member function
<regex>
std::regex_traits::lengthstatic size_t length (const char_type* p);
Return length of string
Returns the length of the string represented by the null-terminated character sequence pointed by p.Similar in semantics to the strlen C function.
In regex_traits it is defined as an alias of its homonym in char_traits:
1
2
3
static size_t length (const char_type* p) {
return char_traits<char_type>::length(p);
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4