* Search for a substring. * * @return The first occurence after pos, or -1 if not found **/
| 495 | * @return The first occurence after pos, or -1 if not found |
| 496 | **/ |
| 497 | int Find(const char * in, int pos=0) const{ |
| 498 | return FindStr(in, strlen(in), pos); } |
| 499 | |
| 500 | /** |
| 501 | * Search for a substring. |