| 
    SNAP Library 2.0, Developer Reference
    2013-05-13 16:33:57
    
   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);
}

