kelime = "Lorem ipsum,lorem,ipsum,lorem,"	
Dim regex
Set regex = New RegExp
regex.IgnoreCase = True
regex.Pattern = "^(.*?),"
Set colMatches = regex.Execute(kelime)
If colMatches.Count > 0 Then
    strTitle = colMatches(0).Value
Else
    strTitle = ""
End If
response.write strTitle
En sondaki virgülü silmek istiyorum. Nasıl yapabilirim arkadaşlar, Regexten anlayan bir arkadaş yardımcı olabilir mi?