Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== MixedCase function ====== ==== Description ==== Given a string, returns the string with initial capitalization (the first character of each word in upper case, the rest of the word in lower case). Note: For a more complete capitalization function, use [[namecap|NameCap()]]. Note: To convert from upper case to lower case, or vice versa, see the example in the [[convert|Convert statement]]. ==== Syntax ==== //result// = MixedCase(//source_string//) ==== Parameters ==== The MixedCase function has the following parameter. ^Parameter^Description^ |//source_string//|An OpenInsight string.| ==== Returns ==== result = A string with initial capitalization. ==== See Also ==== [[namecap|NameCap()]], [[convert|Convert statement]] ==== Example ==== <code> * returns Edgar Allan Poe result = Namecap("eDGar aLLAn pOE") * returns IBM Corporation, Inc. result = Namecap("i B m CorporAtion, iNc.) </code> guides/programming/programmers_reference_manual/mixedcase.txt Last modified: 2024/06/19 20:20by 127.0.0.1