;
; Converts a string into proper sentence case (first letter of each sentence
; upper case, all the others lower case)
; Example Usage:
; W $$SENTENCE^XLFSTR("HELLO WORLD!!! THIS IS A CAPITALIZED SENTENCE. (this isn't.)")
; produces
; Hello world!!! This is a capitalized sentence. This isn't.
;
; Converts a string into TITLE CASE format (first letter of each word is uppercase)
; Example Usage:
; W $$TITLE^XLFSTR("THIS IS CAPITALIZED. (this isn't.)")
; produces
; This Is Capitalized. This Isn't.