Read an integral numeric value from the string. */
| 248 | } |
| 249 | /** Read an integral numeric value from the string. */ |
| 250 | int value() const { |
| 251 | return s ? atoi(s) : 0; |
| 252 | } |
| 253 | bool startswith(const char *prefix); |
| 254 | bool endswith(const char *suffix); |
| 255 | int search(const char *sFind, lenpos_t start=0) const; |