find a char in a string. Return TiXmlString::npos if not found
| 159 | |
| 160 | // find a char in a string. Return TiXmlString::npos if not found |
| 161 | size_type find (char lookup) const |
| 162 | { |
| 163 | return find(lookup, 0); |
| 164 | } |
| 165 | |
| 166 | // find a char in a string from an offset. Return TiXmlString::npos if not found |
| 167 | size_type find (char tofind, size_type offset) const |