1999-10-02 16:21:10 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 10:03:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file lstrings.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 10:03:41 +00:00
|
|
|
|
*
|
|
|
|
|
* A collection of string helper functions that works with string.
|
|
|
|
|
* Some of these would certainly benefit from a rewrite/optimization.
|
|
|
|
|
*/
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
|
|
|
|
#ifndef LSTRINGS_H
|
|
|
|
|
#define LSTRINGS_H
|
|
|
|
|
|
2002-04-15 12:05:07 +00:00
|
|
|
|
#include <vector>
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#include "support/std_string.h"
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace support {
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
///
|
1999-12-19 22:35:36 +00:00
|
|
|
|
int compare_no_case(string const & s, string const & s2);
|
1999-11-26 06:57:35 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
///
|
|
|
|
|
int compare_ascii_no_case(string const & s, string const & s2);
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
///
|
1999-12-19 22:35:36 +00:00
|
|
|
|
int compare_no_case(string const & s, string const & s2, unsigned int len);
|
1999-11-26 06:57:35 +00:00
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2000-03-07 01:14:37 +00:00
|
|
|
|
inline
|
|
|
|
|
int compare(char const * a, char const * b)
|
1999-10-02 16:21:10 +00:00
|
|
|
|
{
|
2001-06-01 10:53:24 +00:00
|
|
|
|
#ifndef CXX_GLOBAL_CSTD
|
2001-05-31 02:23:46 +00:00
|
|
|
|
return std::strcmp(a, b);
|
2001-06-01 10:53:24 +00:00
|
|
|
|
#else
|
|
|
|
|
return strcmp(a, b);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
#endif
|
1999-10-02 16:21:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
|
///
|
2000-03-07 01:14:37 +00:00
|
|
|
|
inline
|
|
|
|
|
int compare(char const * a, char const * b, unsigned int len)
|
1999-10-02 16:21:10 +00:00
|
|
|
|
{
|
2001-06-01 10:53:24 +00:00
|
|
|
|
#ifndef CXX_GLOBAL_CSTD
|
2001-05-31 02:23:46 +00:00
|
|
|
|
return std::strncmp(a, b, len);
|
2001-06-01 10:53:24 +00:00
|
|
|
|
#else
|
|
|
|
|
return strncmp(a, b, len);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
#endif
|
1999-10-02 16:21:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
bool isStrInt(string const & str);
|
|
|
|
|
|
2000-12-04 17:18:01 +00:00
|
|
|
|
/// does the string represent an unsigned integer value ?
|
|
|
|
|
bool isStrUnsignedInt(string const & str);
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
///
|
|
|
|
|
int strToInt(string const & str);
|
|
|
|
|
|
2000-12-04 17:18:01 +00:00
|
|
|
|
/// convert string to an unsigned integer
|
|
|
|
|
unsigned int strToUnsignedInt(string const & str);
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
///
|
|
|
|
|
bool isStrDbl(string const & str);
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
double strToDbl(string const & str);
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
///
|
2000-07-24 13:53:19 +00:00
|
|
|
|
char lowercase(char c);
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
///
|
2000-07-24 13:53:19 +00:00
|
|
|
|
char uppercase(char c);
|
|
|
|
|
|
2002-07-16 21:17:10 +00:00
|
|
|
|
/// same as lowercase(), but ignores locale
|
|
|
|
|
string const ascii_lowercase(string const &);
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
///
|
2000-08-03 21:17:52 +00:00
|
|
|
|
string const lowercase(string const &);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
1999-12-15 06:12:28 +00:00
|
|
|
|
///
|
2000-08-03 21:17:52 +00:00
|
|
|
|
string const uppercase(string const &);
|
1999-12-15 06:12:28 +00:00
|
|
|
|
|
2000-09-26 13:54:57 +00:00
|
|
|
|
/// Does the string start with this prefix?
|
|
|
|
|
bool prefixIs(string const &, string const &);
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
/// Does the string end with this char?
|
|
|
|
|
bool suffixIs(string const &, char);
|
|
|
|
|
|
2000-09-26 13:54:57 +00:00
|
|
|
|
/// Does the string end with this suffix?
|
|
|
|
|
bool suffixIs(string const &, string const &);
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
///
|
|
|
|
|
bool contains(string const & a, string const & b);
|
|
|
|
|
|
2001-01-15 14:05:45 +00:00
|
|
|
|
///
|
|
|
|
|
bool contains(string const & a, char b);
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
/// This should probably we rewritten to be more general.
|
|
|
|
|
class contains_functor {
|
|
|
|
|
public:
|
|
|
|
|
typedef string first_argument_type;
|
|
|
|
|
typedef string second_argument_type;
|
|
|
|
|
typedef bool result_type;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
bool operator()(string const & haystack, string const & needle) const {
|
|
|
|
|
return contains(haystack, needle);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
///
|
|
|
|
|
bool containsOnly(string const &, string const &);
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
/** Extracts a token from this string at the nth delim.
|
2001-02-16 09:25:43 +00:00
|
|
|
|
Doesn't modify the original string. Similar to strtok.
|
|
|
|
|
Example:
|
|
|
|
|
\code
|
2002-07-21 15:51:07 +00:00
|
|
|
|
token("a;bc;d", ';', 1) == "bc";
|
|
|
|
|
token("a;bc;d", ';', 2) == "d";
|
2001-02-16 09:25:43 +00:00
|
|
|
|
\endcode
|
1999-10-02 16:21:10 +00:00
|
|
|
|
*/
|
2000-08-03 21:17:52 +00:00
|
|
|
|
string const token(string const & a, char delim, int n);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Search a token in this string using the delim.
|
2001-02-16 09:25:43 +00:00
|
|
|
|
Doesn't modify the original string. Returns -1 in case of
|
2002-03-21 17:09:55 +00:00
|
|
|
|
failure.
|
2001-02-16 09:25:43 +00:00
|
|
|
|
Example:
|
|
|
|
|
\code
|
2002-07-21 15:51:07 +00:00
|
|
|
|
tokenPos("a;bc;d", ';', "bc") == 1;
|
|
|
|
|
tokenPos("a;bc;d", ';', "d") == 2;
|
2001-02-16 09:25:43 +00:00
|
|
|
|
\endcode
|
1999-10-02 16:21:10 +00:00
|
|
|
|
*/
|
|
|
|
|
int tokenPos(string const & a, char delim, string const & tok);
|
|
|
|
|
|
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
/// Substitute all \a oldchar with \a newchar
|
2000-08-03 21:17:52 +00:00
|
|
|
|
string const subst(string const & a, char oldchar, char newchar);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
|
/// substitutes all instances of \a oldstr with \a newstr
|
2000-09-26 13:54:57 +00:00
|
|
|
|
string const subst(string const & a,
|
|
|
|
|
string const & oldstr, string const & newstr);
|
|
|
|
|
|
2002-07-28 22:50:13 +00:00
|
|
|
|
/** Trims characters off the end and beginning of a string.
|
2001-02-16 09:25:43 +00:00
|
|
|
|
\code
|
2002-07-28 22:50:13 +00:00
|
|
|
|
trim("ccabccc", "c") == "ab".
|
2001-02-16 09:25:43 +00:00
|
|
|
|
\endcode
|
|
|
|
|
*/
|
2002-07-28 22:50:13 +00:00
|
|
|
|
string const trim(string const & a, char const * p = " ");
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
2002-07-28 22:50:13 +00:00
|
|
|
|
/** Trims characters off the end of a string.
|
2001-02-16 09:25:43 +00:00
|
|
|
|
\code
|
2002-07-28 22:50:13 +00:00
|
|
|
|
rtrim("abccc", "c") == "ab".
|
2001-02-16 09:25:43 +00:00
|
|
|
|
\endcode
|
|
|
|
|
*/
|
2002-07-28 22:50:13 +00:00
|
|
|
|
string const rtrim(string const & a, char const * p = " ");
|
|
|
|
|
|
|
|
|
|
/** Trims characters off the beginning of a string.
|
|
|
|
|
\code
|
|
|
|
|
ltrim("ababcdef", "ab") = "cdef"
|
|
|
|
|
\endcode
|
|
|
|
|
*/
|
|
|
|
|
string const ltrim(string const & a, char const * p = " ");
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
|
|
|
|
/** Splits the string by the first delim.
|
2001-02-16 09:25:43 +00:00
|
|
|
|
Splits the string by the first appearance of delim.
|
|
|
|
|
The leading string up to delim is returned in piece (not including
|
|
|
|
|
delim), while the original string is cut from after the delimiter.
|
|
|
|
|
Example:
|
|
|
|
|
\code
|
|
|
|
|
s1= ""; s2= "a;bc".split(s1, ';') -> s1 == "a"; s2 == "bc";
|
|
|
|
|
\endcode
|
|
|
|
|
*/
|
2000-08-03 21:17:52 +00:00
|
|
|
|
string const split(string const & a, string & piece, char delim);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
|
|
|
|
/// Same as split but does not return a piece
|
2000-08-03 21:17:52 +00:00
|
|
|
|
string const split(string const & a, char delim);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
|
|
|
|
/// Same as split but uses the last delim.
|
2000-08-03 21:17:52 +00:00
|
|
|
|
string const rsplit(string const & a, string & piece, char delim);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
|
/// Escapes non ASCII chars
|
|
|
|
|
string const escape(string const & lab);
|
|
|
|
|
|
2002-04-15 12:05:07 +00:00
|
|
|
|
/// gives a vector of stringparts which have the delimiter delim
|
|
|
|
|
std::vector<string> const getVectorFromString(string const & str,
|
|
|
|
|
string const & delim = ",");
|
|
|
|
|
|
|
|
|
|
// the same vice versa
|
|
|
|
|
string const getStringFromVector(std::vector<string> const & vec,
|
|
|
|
|
string const & delim = ",");
|
|
|
|
|
|
2003-05-13 09:48:57 +00:00
|
|
|
|
// wrapper around boost::format using one argument %1$s
|
2003-05-16 14:59:48 +00:00
|
|
|
|
string bformat(string const & fmt, string const & arg1);
|
2003-05-13 09:48:57 +00:00
|
|
|
|
// arguments %1$s and %2$s
|
2003-05-16 14:59:48 +00:00
|
|
|
|
string bformat(string const & fmt, string const & arg1, string const & arg2);
|
2003-09-04 14:33:16 +00:00
|
|
|
|
// arguments %1$d and %2$d
|
|
|
|
|
string bformat(string const & fmt, int arg1, int arg2);
|
2003-05-13 09:48:57 +00:00
|
|
|
|
// arguments %1$s and %2$s and %3$s
|
2003-05-16 14:59:48 +00:00
|
|
|
|
string bformat(string const & fmt, string const & arg1, string const & arg2,
|
2003-05-13 09:48:57 +00:00
|
|
|
|
string const & arg3);
|
|
|
|
|
// arguments %1$s and %2$s and %3$s and %4$s
|
2003-05-16 14:59:48 +00:00
|
|
|
|
string bformat(string const & fmt, string const & arg1, string const & arg2,
|
2003-05-13 09:48:57 +00:00
|
|
|
|
string const & arg3, string const & arg4);
|
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
|
} // namespace support
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#endif
|