SNAP Library , Developer Reference
2013-01-07 14:03:36
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); }