銀河鉄道

【VBA】指定の文字列が含まれているか判定|InStr

サムネイル
指定の文字列があるかどうか

指定テキストに、指定の文字列が含まれていたら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

関連記事

著者

author
月うさぎ

編集後記:
この記事の内容がベストではないかもしれません。

記事一覧