1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/*
* Debian menu system -- update-menus and install-menu
* update-menus/stringtoolbox.cc
*
* Copyright (C) 1996-2003 Joost Witteveen,
* Copyright (C) 2002-2004 Bill Allombert and Morten Brix Pedersen.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License with
* the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
* if not, write to the Free Software Foundation, Inc., 59 Temple Place,
* Suite 330, Boston, MA 02111-1307 USA
*
*
* Written by Joost Witteveen.
*/
#include <algorithm>
#include "exceptions.h"
#include "stringtoolbox.h"
using std::string;
bool contains(const string& str, const string& sub, string::size_type pos)
{
if (str.length() < (sub.length()+pos))
return false;
return (str.substr(pos, sub.length()) == sub);
}
bool contains(const string& str, char c)
{
return str.find(c) != string::npos;
}
string rmtrailingspace(string str)
{
while(!str.empty() && (isspace(str[str.length()-1])))
str.erase(str.length()-1);
return str;
}
string escapewith(const string& str, const string& esc, const string& with)
{
string t;
for (string::size_type i = 0; i != str.length(); ++i)
{
if (esc.find(str[i]) != string::npos)
t += with;
t += str[i];
}
return t;
}
string escape(const string &str, const string &esc)
{
return escapewith(str, esc, "\\");
}
string lowercase(string str)
{
std::transform(str.begin(), str.end(), str.begin(), tolower);
return str;
}
string uppercase(string str)
{
std::transform(str.begin(), str.end(), str.begin(), toupper);
return str;
}
string replacewith(string str, const string &replace, const string &with)
{
if (replace.length() != with.length())
throw exceptions::except_string(_("replacewith($string, $replace, $with): $replace and $with must have the same length."));
for (string::size_type i = 0; i <= replace.length(); ++i)
{
std::replace(str.begin(), str.end(), replace[i], with[i]);
}
return str;
}
string replace(string str, const string& repl, const string& with)
{
string::size_type pos = str.find(repl);
while (pos != string::npos && !repl.empty())
{
str = str.replace(pos, repl.length(), with);
pos = str.find(repl, pos+with.length());
}
return str;
}
/* This is isalnum with C locale enforced */
static int c_isalnum(char s)
{
if (s>='a' && s<='z') return 1;
if (s>='0' && s<='9') return 1;
if (s>='A' && s<='Z') return 1;
return 0;
}
string chartohex(unsigned char c)
{
std::ostringstream o;
o << std::hex << (int) c;
return o.str();
}
string cppesc(const string &s)
{
string t;
for (string::size_type i = 0; i!= s.length(); ++i)
{
if (!(c_isalnum(s[i]) || (s[i] == '_')))
t += '$' + chartohex(s[i]);
else
t += s[i];
}
return t;
}
int stringtoi(const string &str)
{
return atoi(str.c_str());
}
string itostring(int i)
{
std::ostringstream o;
o << i;
return o.str();
}
string string_parent(const string& str)
{
string::size_type pos = str.find_last_of('/');
if (pos == string::npos)
return "";
else
return str.substr(0, pos);
}
string string_basename(const string& str)
{
return string_stripdir(string_parent(str));
}
string string_stripdir(const string& str)
{
string::size_type pos = str.find_last_of('/');
if (pos == string::npos)
return str;
else
return str.substr(pos+1);
}
void break_char(const string &str, std::vector<string>& container, char breakchar)
{
string::size_type lastPos = str.find_first_not_of(breakchar, 0);
string::size_type pos = str.find_first_of(breakchar, lastPos);
while (string::npos != pos || string::npos != lastPos)
{
container.push_back(str.substr(lastPos, pos - lastPos));
lastPos = str.find_first_not_of(breakchar, pos);
pos = str.find_first_of(breakchar, lastPos);
}
}
|