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
|
/*
* Baltisot
* Copyright (C) 1999-2007 Nicolas "Pixel" Noble
*
* 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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* $Id: BString.h,v 1.18 2008-01-25 10:09:19 pixel Exp $ */
#ifndef __STRING_H__
#define __STRING_H__
#include <string.h>
#include <stdarg.h>
#include <iostream>
#include <string>
#include <Exceptions.h>
#include <generic.h>
struct ugly_string {
const char * p;
};
class String : public Base {
public:
String(const String &);
String(const char * = "", int = -1);
String(char);
String(int);
String(unsigned int);
String(int64);
String(Uint64);
String(double);
~String();
const char * set(const char *, va_list);
const char * set(const char *, ...);
const char * set(const ugly_string &, ...);
int scanf(const char *, ...) const;
int scanf(const ugly_string &, ...) const;
const char * to_charp(size_t = 0, ssize_t = -1) const throw (GeneralException);
String extract(size_t = 0, ssize_t = -1) const;
char * strdup(size_t = 0, ssize_t = -1) const;
int to_int(const char * fmt = "%i") const;
double to_double() const;
String to_sqldate() const;
String to_sqltime() const;
String from_sqldate() const;
String from_sqltime() const;
double datedif(const String &) const;
bool is_date() const;
bool is_number() const;
bool is_float() const;
bool is_time() const;
size_t strlen() const;
ssize_t strchr(char, size_t = 0) const;
ssize_t strrchr(char) const;
ssize_t strstr(const String &) const;
int strchrcnt(char) const;
String ltrim() const;
String rtrim() const;
String trim() const;
String & operator=(const String &);
String operator+(const String &) const;
String & operator+=(const String &);
bool operator!=(const String &) const;
bool operator==(const String &) const;
bool operator<=(const String &) const;
bool operator>=(const String &) const;
bool operator<(const String &) const;
bool operator>(const String &) const;
char operator[](size_t i) const;
char & operator[](size_t i);
operator ugly_string() const;
String & toupper();
String & tolower();
String upper() const;
String lower() const;
String & iconv(const String & from, const String & to);
private:
String(int hs, char *);
static char t[];
char * str;
size_t siz;
};
std::ostream & operator<<(std::ostream &, const String &);
std::istream & operator>>(std::istream &, String &);
String operator+(const char *, const String &);
#endif
|