Class: WString
Lua
C++
Edit

WString::Upper

This method returns the uppercase version of the wide string.

Returns

Returns the string, converted to uppercase.

Example

#include "UltraEngine.h"

using namespace UltraEngine;

int main(int argc, const char* argv[])
{
    WString s = "John Smith";
    Print(s.Upper());

    return 0;
}
Copyright © 2024 Ultra Software.
All rights reserved.