How can I convert a string to a sentence case? I don\'t want to convert to title case. My re开发者_如何转开发quirement is to convert the string to sentence case.In C# you do this:
I\'m looking for a function to convert a string of text that 开发者_如何学Cis in UpperCase to SentenceCase. All the examples I can find turn the text into TitleCase.
I have 1 bash script that runs another bash script, however the first bashscript isn\'t waiting for the second one to complete before proceeding, how can I force it to wait?