Skip to content

Commit 3a187e7

Browse files
authored
removed closing parenthesis (#6693)
#changelog #examples
1 parent 38c8715 commit 3a187e7

File tree

1 file changed

+1
-1
lines changed
  • examples/strings/regularExpressionExample/src

1 file changed

+1
-1
lines changed

examples/strings/regularExpressionExample/src/ofApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void ofApp::draw(){
6363
while(getline(file,line)){
6464
if(line.empty() == false) {
6565
string minutes = grepStringInRegex(line, "[0-9]+:[0-9]+");
66-
string sentence = grepStringInRegex(line, "[^0-9_:\\[\\]])");
66+
string sentence = grepStringInRegex(line, "[^0-9_:\\[\\]]");
6767
ofDrawBitmapString("Time:"+minutes, 400, posY);
6868
ofDrawBitmapString("Sentence:"+sentence, 500, posY);
6969
posY += 20;

0 commit comments

Comments
 (0)