Hur använder man RegEx i asp.net för att hitta vissa mönster och sedan ersätta de hittade, jag började lite:RegEx
[code]
Function getHTML(str as string)
Dim StrRegExp As New Regex("?\w+!")
Dim objMatches as MatchCollection
objMatches = StrRegExp.Matches(str)
Dim objMatch as Match
Dim strBefore as string
Dim strFound as string
Dim intPos as Integer = 0
For each objMatch in objMatches
strBefore = MyPage.Substring(intPos, objMatch.Index - intPos)
intPos = objMatch.Index + objMatch.Length
strFound = objMatch.Value
RV = RV & strBefore
RV = RV & FindAndReplace(strFound)
Next
RV = RV & str.Substring(intPos)
return RV
End Sub
[/code]
Men hur fasen ska jag göra "FindAndReplace"?
Jag började, men fastnade då jag inte vet hur jag ska göra:
[code]
Function FindAndReplace(str as string) as string
Select CASE str
End Select
End Function
[/code]
Hur ska jag göra?