Hi
Maybe a UDF
Option Explicit
Function Replace_Words(Myrange As String)
Dim RegEx As Object, RegMatchCollection As Object, RegMatch As Object, OutPutStr As String
Replace_Words = Myrange
Set RegEx = CreateObject("vbscript.regexp")
With RegEx
.Global = True
.Pattern = "([A-Z][a-z]+)"
If .Test(Myrange) Then
Set RegMatchCollection = .Execute(Myrange)
For Each RegMatch In RegMatchCollection
OutPutStr = OutPutStr & " " & RegMatch
Next
Replace_Words = OutPutStr
End If
End With
Set RegEx = Nothing
End Function
Bookmarks