Function initcap

Source
pub fn initcap(s: &str, writer: &mut impl Write)
Expand description

Capitalizes the first letter of each word in the given string.

ยงExample

query T
select initcap('the quick brown fox');
----
The Quick Brown Fox