Jag ville leta rätt på det som står mellan <TITLE> och </TITLE> med hjälp av regular expression.regular expression problem
Jag har börjat så här:
<code>
Dim RegExp As RegExp
Dim Matches As MatchCollection
Dim Match As Match
Set RegExp = New RegExp
RegExp.Global = True
RegExp.IgnoreCase = True
RegExp.Pattern = "(<TITLE> </TITLE>)\S*"
Set Matches = RegExp.Execute(Text1.Text)
For Each Match In Matches
Text2.Text = Match.Value & vbCrLf
Next
</code>
Som ni förstår så fungerar det här inte alls.
Hur skall jag skriva??