pause at 53minutes

This commit is contained in:
2026-01-12 03:27:32 +01:00
parent a328578ad1
commit cbf6c4fb62

View File

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