どんな助けでもありがとう。
たとえば、文字列があります
Dim words As String = "Hello world i fell like badword"
Dim inputCheck As String = words.Split(New Char() {" "c})
単語と置換単語を含むハッシュ テーブルを使用
hastable をループして、一致する単語をどのように置き換えますか?
For Each Item In hsTable
Next
出てくるのは、"Hello world i fall like * " ハッシュテーブルで一致する置換単語に置き換えられる悪い単語です。
ありがとうございました。