Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

string_upper

CryoEagle edited this page Dec 26, 2018 · 2 revisions

string_upper

Returns a copy of a given string in all uppercase (capital) letters.

Syntax:

string_upper(str)
Argument Description
string str The string to convert to uppercase

Returns: string

Description

With this function you can force a string to contain only upper case characters.

Note: This function only detects the 26 letter english alphabet from A - Z.

Example:

str1 = 'Hello World';
str2 = string_upper(str1); 

This will set str2 to 'HELLO WORLD'.

Back to strings

Clone this wiki locally

AltStyle によって変換されたページ (->オリジナル) /