Skip to content

Commit

Permalink
removed closing parenthesis (#6693)
Browse files Browse the repository at this point in the history
#changelog #examples
  • Loading branch information
thomasgeissl authored Feb 26, 2021
1 parent 38c8715 commit 3a187e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/strings/regularExpressionExample/src/ofApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void ofApp::draw(){
while(getline(file,line)){
if(line.empty() == false) {
string minutes = grepStringInRegex(line, "[0-9]+:[0-9]+");
string sentence = grepStringInRegex(line, "[^0-9_:\\[\\]])");
string sentence = grepStringInRegex(line, "[^0-9_:\\[\\]]");
ofDrawBitmapString("Time:"+minutes, 400, posY);
ofDrawBitmapString("Sentence:"+sentence, 500, posY);
posY += 20;
Expand Down

0 comments on commit 3a187e7

Please sign in to comment.