It\'s easy when you understand...unfortunately, I don\'t! I will deeply appreciate you if you can guide me to the answer, thanks.
I want to capture a string, using just
Your Regexp would look something like that. The acutal Syntax depends on your programming language / tool.
First you need to match the . part. Then you capute everything upto (. then to be sure match everything in brackets followed by
/].*>\([^(]*\)(.*) /
You should read the Book: Mastering Regular Expressions by Jeffrey Friedl.