ねえ、私は入力として次の文字列を持っています:
"abcol"
"ab_col"
"cold"
"col_ab"
"col.ab"
検索する文字列colがあります。一致させるために正規表現を使用しています
Match matchResults = Regex.Match(input , "col", RegexOptions.IgnoreCase);
このパターンの文字列だけを一致させたい
[Any special character or nothing ] + col + [Any special character or nothing]
上記の入力から、私は戻りたいだけです
ab_col, col_ab , col.ab
どんな助けでも大歓迎です。
ありがとう
[任意の特殊文字]=[^ A-Za-z0-9]