"^[\\s]*DISPLAY.*?(\".*?\").*?\\."
I have the above regular expression. However i have a problem with it.
DISPLAY AC-YEAR LINE 2 POSITION 68 REVERSE.
This string isn't captured as it should.
DISPLAY "EATING.FOOD" LINE 13 POSITION 31 REVERSE.
This is captured successfully.
I cant figure how I should write the regular expression.
"^[\\s]*DISPLAY.*?(\".*?\") *,?,?? .*?\\.
Putting quantifiers after the ) doesn't work. It doesn't even capture the group.