Dim Txt As String = "***Regex *** is******** **your * * * friend**** ******** ** ***"
Dim Pattern As String = "([*])\1+"
Dim Replacement As String = "*"
Dim Matcher1 As Matcher
Matcher1 = Regex.Matcher(Pattern, Txt)
Dim r As Reflector
r.Target = Matcher1
Label1.Text = r.RunMethod2("replaceAll", Replacement, "java.lang.String")