631 B
631 B
String method
ToUpper
set strings uppercase
String fullName = "mrsh";
fullName = fullName.ToUpper();
Tolower
set strings lowercase
String fullName = "mrsh";
fullName = fullName.ToLower();
Replace
String phoneNumber = "123-456-789";
phoneNumber.Replace("-", "/");
Insert
String fullName = "mrsh online";
userName = fullName.Insert(0, "@");
Length
String fullName = "mrsh online";
fullName.Length();
Substring
String fullName = "mrsh online";
String firstName = fullName.Substring(0,4);
String lastName = fullName.Substring(5,6);