How do you do a regular expression which will capture a multiple line comment? I have tried various things but nothing is working.
let re = Regex::new(m"/*.**/").unwrap();
let re = Regex::new(m"\/\*.*\*\/").unwrap();
I can't figure it out.
Once upon a time a programmer had a problem, so he decided to use a regular expression. Now he has two problems.