aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/StringUtil.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/StringUtil.hh')
-rw-r--r--src/FbTk/StringUtil.hh97
1 files changed, 97 insertions, 0 deletions
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh
new file mode 100644
index 0000000..5d6179d
--- /dev/null
+++ b/src/FbTk/StringUtil.hh
@@ -0,0 +1,97 @@
1// StringUtil.hh for fluxbox
2// Copyright (c) 2001 - 2003 Henrik Kinnunen (fluxgen(at)linuxmail.org)
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22//$Id: StringUtil.hh,v 1.8 2003/12/16 17:06:52 fluxgen Exp $
23
24#ifndef FBTK_STRINGUTIL_HH
25#define FBTK_STRINGUTIL_HH
26
27#include <string>
28
29namespace FbTk {
30
31namespace StringUtil {
32
33char *strdup(const char *);
34
35/// Similar to `strstr' but this function ignores the case of both strings
36const char *strcasestr(const char *str, const char *ptn);
37
38/// expands ~ to value of ${HOME} enviroment variable
39std::string expandFilename(const std::string &filename);
40/// @return extension of filename (ex: filename.txt will return txt)
41std::string findExtension(const std::string &filename);
42
43/// returns string between character first and last
44int getStringBetween(std::string& out, const char *instr,
45 char first, char last,
46 const char *ok_chars=" \t\n", bool allow_nesting = false);
47
48/// @return lower case letters of conv
49std::string toLower(const std::string &conv);
50/// @return upper case letters of conv
51std::string toUpper(const std::string &conv);
52#ifdef basename
53#undef basename
54#endif // basename
55std::string basename(const std::string &basename);
56
57
58/// removes the first whitespace characters of the string
59std::string::size_type removeFirstWhitespace(std::string &str);
60std::string::size_type removeTrailingWhitespace(std::string &str);
61
62/// Breaks a string into tokens
63template <typename Container>
64static void
65stringtok (Container &container, std::string const &in,
66 const char * const delimiters = " \t\n") {
67
68 const std::string::size_type len = in.length();
69 std::string::size_type i = 0;
70
71 while ( i < len ) {
72 // eat leading whitespace
73 i = in.find_first_not_of(delimiters, i);
74 if (i == std::string::npos)
75 return; // nothing left but white space
76
77 // find the end of the token
78 std::string::size_type j = in.find_first_of(delimiters, i);
79
80 // push token
81 if (j == std::string::npos) {
82 container.push_back(in.substr(i));
83 return;
84 } else
85 container.push_back(in.substr(i, j-i));
86
87 // set up for next loop
88 i = j + 1;
89 }
90}
91
92} // end namespace StringUtil
93
94} // end namespace FbTk
95
96
97#endif // FBTK_STRINGUTIL_HH