Visual Basic 中学校 掲示板 投稿の管理
タグのない投稿を抽出
統計
RSS
Visual Basic 中学校
投稿一覧
正規表現で詰まりました。
この投稿へのリンク
https://keijiban.umayadia.com/ThreadDetail.aspx?ThreadId=9737#CommentId15474
この投稿の削除
削除パスワード
削除する
コメント本文
投稿者
よねKEN
 (社会人)
投稿日時
2010/8/10 12:15:34
他にもいい方法があるかもしれませんが、
Regex.Replaceの以下のURLのオーバーロードを用いて実現できます。
http://msdn.microsoft.com/ja-jp/library/ht1sxswy.aspx
' コード例
Imports System
Imports System.Text.RegularExpressions
Module Program
Sub Main
Dim text As String = "When I was a child, I went there."
Dim pattern As String = "\w+"
Console.WriteLine(Regex.Replace(text, pattern, AddressOf MyMatchEvaluator))
Console.Read()
End Sub
Public Function MyMatchEvaluator(ByVal match As Match) As String
Return match.Value.Substring(0, 1) & new String("●"c, match.Length-1)
End Function
End Module