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.hh87
1 files changed, 87 insertions, 0 deletions
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh
new file mode 100644
index 0000000..1439308
--- /dev/null
+++ b/src/FbTk/StringUtil.hh
@@ -0,0 +1,87 @@
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.3 2003/07/01 01:49:13 rathnor 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
41/// returns string between character first and last
42int getStringBetween(std::string& out, const char *instr,
43 char first, char last,
44 const char *ok_chars=" \t\n", bool allow_nesting = false);
45
46/// converts a string to lover case
47void toLower(char * const conv);
48
49std::string toLower(const std::string &conv);
50
51
52/// Breaks a string into tokens
53template <typename Container>
54static void
55stringtok (Container &container, std::string const &in,
56 const char * const delimiters = " \t\n") {
57
58 const std::string::size_type len = in.length();
59 std::string::size_type i = 0;
60
61 while ( i < len ) {
62 // eat leading whitespace
63 i = in.find_first_not_of(delimiters, i);
64 if (i == std::string::npos)
65 return; // nothing left but white space
66
67 // find the end of the token
68 std::string::size_type j = in.find_first_of(delimiters, i);
69
70 // push token
71 if (j == std::string::npos) {
72 container.push_back(in.substr(i));
73 return;
74 } else
75 container.push_back(in.substr(i, j-i));
76
77 // set up for next loop
78 i = j + 1;
79 }
80}
81
82}; // end namespace StringUtil
83
84}; // end namespace FbTk
85
86
87#endif // FBTK_STRINGUTIL_HH