39 #include <OpenMS/OpenMSConfig.h>
58 typedef std::vector<String>::iterator
Iterator;
175 struct TrimmableStringPredicate_
177 TrimmableStringPredicate_(
const String& target,
const bool trim) :
181 if (trim_) target_.trim();
206 struct PrefixPredicate_ :
207 TrimmableStringPredicate_
209 PrefixPredicate_(
const String& target,
const bool trim) :
210 TrimmableStringPredicate_(target, trim)
219 inline bool operator()(
const String& value)
221 return getValue(value).hasPrefix(target_);
227 struct SuffixPredicate_ :
228 TrimmableStringPredicate_
230 SuffixPredicate_(
const String& target,
const bool trim) :
231 TrimmableStringPredicate_(target, trim)
240 inline bool operator()(
const String& value)
242 return getValue(value).hasSuffix(target_);
Utilities operating on lists of Strings.
Definition: StringListUtils.h:52
static void toLower(StringList &sl)
Transforms all strings contained in the passed StringList to lower case.
static Iterator searchPrefix(const Iterator &start, const Iterator &end, const String &text, bool trim=false)
Searches for the first line that starts with text beginning at line start.
std::vector< String >::reverse_iterator ReverseIterator
Mutable reverse iterator.
Definition: StringListUtils.h:62
StringListUtils & operator=(StringListUtils &)
Definition: StringListUtils.h:251
std::vector< String >::const_iterator ConstIterator
Non-mutable iterator.
Definition: StringListUtils.h:60
static Iterator searchSuffix(const Iterator &start, const Iterator &end, const String &text, bool trim=false)
Searches for the first line that ends with text beginning at line start.
static ConstIterator searchSuffix(const StringList &container, const String &text, bool trim=false)
Searches for the first line that ends with text in the StringList container.
static void toUpper(StringList &sl)
Transforms all strings contained in the passed StringList to upper case.
static Iterator searchPrefix(StringList &container, const String &text, bool trim=false)
Searches for the first line that starts with text in the StringList container.
std::vector< String >::const_reverse_iterator ConstReverseIterator
Non-mutable reverse iterator.
Definition: StringListUtils.h:64
static Iterator searchSuffix(StringList &container, const String &text, bool trim=false)
Searches for the first line that ends with text in the StringList container.
static ConstIterator searchPrefix(const StringList &container, const String &text, bool trim=false)
Searches for the first line that starts with text in the StringList container.
static ConstIterator searchSuffix(const ConstIterator &start, const ConstIterator &end, const String &text, bool trim=false)
Searches for the first line that ends with text beginning at line start.
INTERNAL StringListUtils()
hide c'tors to avoid instantiation of utils class
Definition: StringListUtils.h:249
StringListUtils(const StringListUtils &)
Definition: StringListUtils.h:250
std::vector< String >::iterator Iterator
Mutable iterator.
Definition: StringListUtils.h:58
static StringList fromQStringList(const QStringList &rhs)
Creates a StringList from a QStringList.
static ConstIterator searchPrefix(const ConstIterator &start, const ConstIterator &end, const String &text, bool trim=false)
Searches for the first line that starts with text beginning at line start.
A more convenient string class.
Definition: String.h:61
String & trim()
removes whitespaces (space, tab, line feed, carriage return) at the beginning and the end of the stri...
std::vector< String > StringList
Vector of String.
Definition: ListUtils.h:70
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47