/usr/share/doc/root/test/tstring.cxx is in root-system-doc 5.34.14-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 183 184 185 186 187 188 189 190 191 192 | // @(#)root/test:$Id$
// Author: Fons Rademakers 19/08/96
#include <stdlib.h>
#include "Riostream.h"
#include "TString.h"
#include "TRegexp.h"
#include "TPRegexp.h"
#include "TSystem.h"
void Ok(int i, int b)
{
cout << "Test " << i;
if (b)
cout << " ok" << endl;
else
cout << " NOT ok" << endl;
}
int main()
{
// create base string
TString s = "aap noot mies";
cout << s << endl;
// use different constructors and excercise +, += and == operators
TString s1 = TString("aa") + "p ";
s1 += TString("noot ") + "mi" + "es";
cout << s1 << endl;
Ok(1, s1==s);
// use single char constructor and excercise again += and == operators
TString s2 = 'a';
s2 += "ap ";
s2 += "noot ";
s2 += "mies";
cout << s2 << endl;
Ok(2, s2==s);
// get and set a subrange (via TSubString)
TString s3 = s(4,9);
s3(0,4) = "mama papa";
cout << s3 << endl;
Ok(3, s3=="mama papa mies");
// create a regular expression, make search in string and replace
// matched substring
TRegexp re(" n.*t ");
TString s4 = s;
s4(re) = " pipo ";
cout << s4 << endl;
Ok(4, s4=="aap pipo mies");
// use "const char*" operator and the Data() member function to access
// the string as a const char*
const char *a = (const char*)s;
cout << a << endl;
Ok(5, !strcmp(a, s.Data()));
// return 13th character and replace it by 't', getting 14th character
// should result in an error message since operator[] uses range checking
TString s6 = s;
s6[12] = 't';
cout << s6 << endl;
cout << "*** Error message ok, accessing intentionaly out-of-bounds" << endl;
char b = s6[13];
cout << b << endl;
Ok(6, s6=="aap noot miet");
// return 13th character and replace it by 'p', getting 14th character
// should NOT result in an error message since operator() does not use
// range checking
TString s7 = s;
s7(12) = 'p';
cout << s7 << endl;
char c = s7(13);
cout << c << endl;
Ok(7, s7=="aap noot miep");
// use Append, Remove, Prepend, Replace and Insert
TString s8 = s;
s8.Append(" tante ");
s8.Append(s7(9,4));
cout << s8 << endl;
s8.Remove(0,14);
cout << s8 << endl;
s8.Prepend("oom jan");
cout << s8 << endl;
s8.Insert(7," en ");
cout << s8 << endl;
s8.Replace(4,3,"jaap");
cout << s8 << endl;
Ok(8, s8=="oom jaap en tante miep");
// use CompareTo to compare char * and TString
TString s9 = s;
Ok(9, !s9.CompareTo(s));
Ok(10, !s9.CompareTo("AAP NOOT MIES", TString::kIgnoreCase));
// use Contains to find if "string" is contained
Ok(11, s9.Contains("NooT", TString::kIgnoreCase));
Ok(12, !s9.Contains("pipo"));
// return the index to the first and last character 'c'
Ok(13, s.First('o')==5);
Ok(14, s.First('z')==kNPOS);
Ok(15, s.Last('a')==1);
Ok(16, s.Last('z')==kNPOS);
// returns the index of the start of match
Ok(17, s.Index("mies")==9);
Ok(18, s.Index("aa",1)==kNPOS);
// returns length of string
Ok(19, s.Length()==13);
// test IsNull
TString s10;
Ok(20, s10.IsNull());
Ok(21, !s.IsNull());
// test IsAscii
s10 = "\xb9";
Ok(22, !s10.IsAscii());
Ok(23, s.IsAscii());
// some excercises with the Perl Compatible Regular Expressions
TString s11("Food is on the foo table.");
TPRegexp("\\b(foo)\\s+(\\w+)").Substitute(s11, "round $2");
Ok(24, s11=="Food is on the round table.");
TString s12("pepernotenkoek");
TPRegexp("peper(.*)koek").Substitute(s12, "wal$1boom");
Ok(25, s12=="walnotenboom");
TString s13("hihi haha");
TPRegexp("^([^ ]*) *([^ ]*)").Substitute(s13, "$2 $1");
Ok(26, s13=="haha hihi");
Ok(27, TPRegexp("^(\\w+) *(\\w+)").Match(s13) == 3);
// test Resize and Strip
s9.Prepend(" ");
cout << s9 << endl;
s9.Resize(50);
cout << s9 << "<<ends here" << endl;
cout << s9.Strip(TString::kBoth) << "<<ends here" << endl;
Printf("Using Print: %s (%d)\n", (const char*) s9, s9.Length());
// test comparisons
TString s20 = "abc";
TString s21 = "abcd";
TString s22 = "bcde";
TString s23 = "Bcde";
TString s24 = "";
Ok(28, s20 < s21);
Ok(29, s21 < s22);
Ok(30, s23 < s22);
Ok(31, s22.CompareTo(s23, TString::kIgnoreCase) == 0);
Ok(32, (s23 < s24) != (s24 < s23));
// test file access
ifstream f("tstring.cxx");
f.seekg(0, ios::end);
Ssiz_t size = f.tellg();
f.seekg(0, ios::beg);
TString fs;
fs.ReadFile(f);
Ok(33, size == fs.Length());
ifstream f2("tstring.cxx");
fs.ReadLine(f2); // read '// @(#)root/test:$Id: tstring.cxx 38977..."
Ok(34, fs.Contains("root/test"));
fs.ReadToken(f2); // read '//'
fs.ReadToken(f2); // read 'Author:'
Ok(35, fs == "Author:");
return 0;
}
|