set OBX5 [lindex $fieldList 5]
set wordList [regexp -inline -all — {[A-Z][a-z]+} $OBX5]
Once you get your OBX5, you can split it using the Regex above.
Then you can loop through the words…
foreach value $wordList {
#do something
}
Hari Krishna
Columbus Regional Hospital