I want a string entered should be converted to sentence case in whatever case it is.
Like
hi all, this is derp. thank you all to answer my query.
be converted to
Hi all, this is derp. Thank you all to answer my query.
I want a string entered should be converted to sentence case in whatever case it is.
Like
hi all, this is derp. thank you all to answer my query.
be converted to
Hi all, this is derp. Thank you all to answer my query.
On each line this script will print ..... Sunday Monday Tuesday Wednesday Thursday Friday Saturday.
Here's my modification of this post which was for changing to Title Case.
Instead of making it every word. This example is compatible with multiple lines and strings like
A.M.
andP.M.
and of course, any word proceeding a period and a whitespace character.You could add your own custom words below that
toLowerCaseNames
function andtoUpperCaseNames
in that example below.You can paste all those regexp above into https://regexr.com/ to break down how they work.
The below code is working for me as expected.
You can also try this
Try this, It will work fine for you. It will also work for String having leading spaces.
Try Demo
http://jsfiddle.net/devmgs/6hrv2/
Beware all dot doesn't always represent end of line and may be abbreviations etc. Also its not sure if one types a space after the full stop. These conditions make this script vulnerable.