【VBA】指定の文字列が含まれているか判定|InStr
記事更新日:2022-11-01
指定テキストに、指定の文字列が含まれていたらtrueを返す
' -----------------------------------------------------------------------
' 引数 : text:調査元テキスト/str:含まれているか確認する文字列
' -----------------------------------------------------------------------
Public Function StrExsistsInTxt( _
ByVal text As String, _
ByVal str As String) As Boolean
StrExsistsInTxt = False
If InStr(text, str) > 0 Then StrExsistsInTxt = True
End Function
関連記事
2022-11-01
編集後記:
この記事の内容がベストではないかもしれません。