We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38c8715 commit 3a187e7Copy full SHA for 3a187e7
examples/strings/regularExpressionExample/src/ofApp.cpp
@@ -63,7 +63,7 @@ void ofApp::draw(){
63
while(getline(file,line)){
64
if(line.empty() == false) {
65
string minutes = grepStringInRegex(line, "[0-9]+:[0-9]+");
66
- string sentence = grepStringInRegex(line, "[^0-9_:\\[\\]])");
+ string sentence = grepStringInRegex(line, "[^0-9_:\\[\\]]");
67
ofDrawBitmapString("Time:"+minutes, 400, posY);
68
ofDrawBitmapString("Sentence:"+sentence, 500, posY);
69
posY += 20;
0 commit comments