|
SNAP Library 2.2, Developer Reference
2014-03-11 19:15:55
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
|

Go to the source code of this file.
Functions | |
| int | GetNthOccurence (const TChA &Url, const int &Count, const char Ch='/') |
| int GetNthOccurence | ( | const TChA & | Url, |
| const int & | Count, | ||
| const char | Ch = '/' |
||
| ) |
Definition at line 207 of file util.cpp.
References TChA::CStr().
Referenced by TStrUtil::GetWebsiteNm().
{
const char *c = Url.CStr();
int cnt = 0;
while (*c && cnt != Count) {
if (*c == Ch) { cnt++; }
c++;
}
return int(c-Url.CStr()-1);
}

