* Return the substring from index to the end. * * @param[in] index Index. * * @return Substring */
| 268 | * @return Substring |
| 269 | */ |
| 270 | String substring(unsigned int index) const |
| 271 | { |
| 272 | return m_stdStr.substr(index); |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Return the substring between left and right index. |
no outgoing calls
no test coverage detected