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
|
#ifndef __STRING_H__
#define __STRING_H__
#ifdef __cplusplus
#include <iostream.h>
#include <string.h>
#include "Exceptions.h"
/*
* Cette classe permet de stocker des chaînes de caractères simplement.
* Elle est une base essentielle et permet d'effectuer énormément d'opérations:
* - set fonctionne comme sprintf, et réassigne la chaîne.
* - to_charp() transforme la chaîne en pointeur.
* - to_charp(from) extrait la chaîne depuis le caractère numéro from
* - to_charp(from, to) extrait la chaîne depuis le caractère numéro from
* jusqu'au caractère numéro to.
* ATTENTION: les fonctions to_charp renvoie un pointeur sur un tableau
* statique, et ce tableau sera modifié au prochain
* appel à to_charp ou a set.
* - to_int transforme la chaîne en int.
* - to_double transforme la chaîne en double
* - to_sqldate effectue la conversion suivante: DD/MM/YYYY ==> YYYYMMDD
* - to_sqltime effectue la conversion suivante: h:m ==> h * 60 + m
* - from_sqldate et from_sqltime effectue les conversions inverses.
* - datedif calcule la différence en jours entre deux dates. Si le résultat
* est négatif, alors une des deux dates étaient invalide.
* - is_date, is_number, is_float, is_time renvoient des booléens de test.
* - strlen renvoie la longueur de la chaine
* - strchr(c) renvoie la position du caractère c
* - strchr(c, p) recherche le caractère c à partir de la position p
* - strrchr(c) renvoie la position du caractère c, en recherchant depuis la droite.
* - strstr(s) renvoie la position de la chaine s
* NOTE: les fonctions de recherche renvoient un résultat négatif si pas trouvé.
* - strchrcnt(c) compte le nombre d'occurences du caractère c.
*
* Les opérateurs !=, ==, <=, >=, < et > permettent de comparer deux chaînes, en mode
* 'case sensitive'. L'operateur [] renvoie un caractère de la chaîne.
*
* Les opérateurs << et >> vers un ostream ou depuis un istream sont supportés.
*/
class String : public Base {
public:
String(const String &);
String(const char * = "");
String(char);
String(int);
String(double);
~String();
char * set(char *, ...);
char * to_charp(size_t = 0, ssize_t = -1) const;
String extract(size_t = 0, ssize_t = -1) const;
char * strdup(size_t = 0, ssize_t = -1) const;
int to_int() 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 & 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;
private:
String(int hs, const char *);
static char t[BUFSIZ];
char * str;
size_t siz;
};
ostream & operator<<(ostream &, const String &);
istream & operator>>(istream &, String &);
#else
#error This only works with a C++ compiler
#endif
#endif
|