Hi, I'm writing a script to scan a file, and I need to test a line for this format:
[Event "blah blah blah"]
where 'blah blah blah' can be anything. So for example I need ereg() to find lines like
[Event "hello"]
[Event "a4233 blahblah"]
[Event "festival 333"]
Can someone tell me how to fill in the regular expression part for ereg()? Thank you.