Basically I'm creating a simple Interpreter for our compiler course. Of course this is not a homework-type question.
Anything that is followed by an asterisks is considered a comment provided that it is not part of the string. I have an escape character in my Interpreter which are brackets.
These are sample syntax for my interpreter
* hello world
OUTPUT: "This is asterisk [*]" * outputs string
OUTPUT: "This is asterisk *" * outputs string produces syntax error
x = "[*]" & "hello" & "[*]*]" this is already comment which produces syntax error
when I try to run this Regex
[^\[]\*.*
It matches with the following:
* hello world
* outputs string
*" * outputs string produces syntax error
]*]" this is already comment which produces syntax error
My question is, why did the regex "eats" one character before? Wherein I already need
* hello world
* outputs string
*" * outputs string produces syntax error
*]" this is already comment which produces syntax error

