sentence

sentence(str) capitalizes the first letters of each sentence.

Examples

>> str = 'this is a example. see what sentence function does.'#

this is an example. see what sentence function does.

>> sentence(str)#

This is an example. See what sentence function does.
>> sentence({'abc. def'; 'gh.ij'})#

 [Abc. Def]
 [Gh.ij]

See also

lower | upper | proper