Dim Text = "some text here ###MONTH-3### some text here ###MONTH-2### some text here"
Dim regex = New System.Text.RegularExpressions.Regex("###MONTH[+-][0-9]###")
For Each match In regex.Matches(Text)
// What to write here ?
// So, that ###MONTH-i### gets replaced with getmonth(i)
// Therefore, final Text will be :
// Text = "some text here" + getmonth(-3) + "some text here" + getmonth(-2) + "some text here"
Next match
我想我已經適當解釋我的問題..
所以,你可以請幫助?
是的,你真的應該開始使用Option Explicit ... – xx77aBs
他可以使用[Option Infer](http://msdn.microsoft.com/en-us/library/bb384665.aspx)。編譯器無法爲你編寫代碼。 – R0MANARMY
的確,我想這對文字和非常明顯的表達式來說是可以接受的。 – Jodrell