Home | Libraries | People | FAQ | More |
boost::algorithm::istarts_with — 'Starts with' predicate ( case insensitive )
template<typename Range1T, typename Range2T> bool istarts_with(const Range1T & Input, const Range2T & Test, const std::locale & Loc = std::locale());
This predicate holds when the test string is a prefix of the Input. In other words, if the input starts with the test. Elements are compared case insensitively.
Parameters
An input sequence
A locale used for case insensitive comparison
A test sequence
Returns:
The result of the test
Notes:
This function provides the strong exception-safety guarantee
Copyright © 2002-2004 Pavol Droba |