C#:String Functions
Jump to navigation
Jump to search
The methods and properties of the String type include:
Example | Value | Comment |
---|---|---|
s+" once" | "Andrew was here once" | The strings are concatenated using + |
s.Equals("another") | false | Also s == "another" Tests for equality |
s.IndexOf("was") | 6 | Returns -1 if the substring is not there. |
s.Length | 14 | The number of characters |
s.Split(" ") | ["Andrew","was","here"] | Returns an array of String. |
s.Substring(2,7) | "drew wa" | Characters from position 2. 7 characters are taken |
s.ToUpper() | "ANDREW WAS HERE" | Also .toLowerCase() |