StrConv Function [VBA]/text/sbasic/shared/strconv.xhpStrConv function
StrConv Function
Convert a string as specified by a conversion type.StrConv(Text, Conversion, [ LCID ])StringText: Any valid string expression.Conversion: The type of conversion to perform, as defined in the table below.
ConversionValueDescriptionvbUpperCase1Converts Text characters to uppercase.vbLowerCase2Converts Text characters lowercase.vbProperCase3Converts the first letter of every word in Text to uppercase.vbWide4Converts narrow (half-width) characters in Text to wide (full-width) characters.vbNarrow8Converts wide (full-width) characters in Text to narrow (half-width) characters.vbKatakana16Converts Hiragana characters in Text to Katakana characters.vbHiragana32Converts Katakana characters in Text to Hiragana characters.vbUnicode64Converts Text characters to Unicode characters using the default code page of the system.vbFromUnicode128Converts Text characters from Unicode to the default code page of the system.