-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstringiterator.cpp
88 lines (73 loc) · 1.76 KB
/
stringiterator.cpp
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
#include "stringiterator.h"
#include "QChar"
/*
Description: creates a Stringitator to iterate over a String
In: String s -> target String
int i -> current position (default -1 -> .next() gives char at string[0]
Out: Stringiterator
*/
Stringiterator::Stringiterator(QString s, int i ){
if(s.size() != 0 && i >= -1 && i <= s.size()){
internString = s;
index = i;
}else{
internString = "";
index = -2;
}
}
/*
Description: looks for an existing next element in the String
void-> bool
In: /
Out: bool -> whether there is a next element
*/
bool Stringiterator::hasNext(){
if(index != -2){
if(index+1 < internString.size()){
return true;
}else{
return false;
}
}else{
return false;
}
}
/*
Description: looks for an existing previous element in the String (if actual index > 0)
void-> bool
In: /
Out: bool -> whether there is a previous element
*/
bool Stringiterator::hasPrevious(){
if(index == -2) return false;
if(index < 1) return false;
return true;
}
/*
Description: gives the previous element in the String; if index < 1 it returns the Null QChar
void -> QChar
In: /
Out: QChar
*/
QChar Stringiterator::previous(){
if(index < 1 || index == -2) return QChar();
return internString.at(--index);
}
/*
Description: gives the next element in the String; if index > String.soze() it returns the Null QChar
void -> QChar
In: /
Out: QChar
*/
QChar Stringiterator::next(){
if(index >= internString.size()) return QChar();
else{
return internString.at(++index);
}
}
int Stringiterator::getIndex(){
return index;
}
QString Stringiterator::getInternString(){
return internString;
}