OK, Here's the quick-and-dirty version within SoundMiner 4.8.1
(note: in subsequent SM versions, the "replace string" may change from "\1" to "$1")
- select records
- right-click in field you want to modify, select "find and replace selection"
- check that "field" is correct, tick the RegEx box
- Find: "([A-Z][a-z])" (don't include quotes. Finds an uppercase character followed by a lowercase character)
- Replace " \1" (that's space, backslash, one)
- click "preview" and review, then "commit" the "close and save" if it's right.
Now cleanup - if somebody knows how to do this as part of the regex, great.
- in Admin window, remove leading/trailing spaces
- remove instances of two or more spaces - do another RegEx find/replace using:
- Find: " +" (that's space space plus)
- Replace: " " (that's space)
OK! Enough geeking for today. But always happy to be able to make these things work.
-jeremiah