正規表現を使用して別の文字列の文字列パターンを検索するvbaマクロに取り組んでいます。
正規表現パターンには、変化する文字列(以下のコードのAPR24)が含まれています。パターンに変数を含める方法を知る必要があります。誰か助けてください。
私のコードは以下の通りです
Public Function Regexsrch(ByVal str2bsrchd As String, ByVal str2srch As String) As Boolean
Dim Regex As New VBScript_RegExp_55.RegExp
Dim matches, s
Regex.Pattern = "(\.|\s)APR24(,|\s|\()"
Regex.IgnoreCase = True
If Regex.Test(str2bsrchd) Then
Regexsrch = True
Else
Regexsrch = False
End If
End Function