“String Toupper” Code-Antworten

Touppercase

const names = ['Ali', 'Atta', 'Alex', 'John'];

const uppercased = names.map(name => name.toUpperCase());

console.log(uppercased);

// ['ALI', 'ATTA', 'ALEX', 'JOHN']
Gifted Goose

Schnur Großbuchstaben


let txt = "Hello World!";
txt = txt.toUpperCase();
MD RAZZAK

String Toupper

string a = "String";
string b = a.Replace("i", "o"); // Strong
       b = a.Insert(0, "My ");  // My String
       b = a.Remove(0, 3);      // ing
       b = a.Substring(0, 3);   // Str
       b = a.ToUpper();         // STRING
int    i = a.Length;            // 6
PrashantUnity

Ähnliche Antworten wie “String Toupper”

Fragen ähnlich wie “String Toupper”

Weitere verwandte Antworten zu “String Toupper” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen