I'm completely new VB.net regular expressions, however I know Perl regex pretty well, but when I tried to use perl regex type find and replaces it doesn't work. I'm trying to replace all
"figure digit", "section digit", "table digit" expressions with ignorecase
which in perl is like
Find "figure (\d+)"
Replace "<a href="fig$1">figure $1</href>"
Find "table (\d+)"
Replace "<a href="tab$1">table $1</href>" and so on
How do I achieve this in vb.net