string SubString = MyString.Substring(MyString.Length-6);
Related Contents:
- If strings are immutable in .NET, then why does Substring take O(n) time?
- Fastest way to remove first char in a String
- Converting a String to DateTime
- Convert a string to an enum in C#
- What’s the @ in front of a string in C#?
- Why .NET String is immutable? [duplicate]
- In C#, should I use string.Empty or String.Empty or “” to intitialize a string?
- How do I parse a string with a decimal point to a double?
- How do I replace multiple spaces with a single space in C#?
- Split a string by another string in C#
- How do I replace the *first instance* of a string in .NET?
- Replace Line Breaks in a String C#
- Finding all positions of substring in a larger string in C#
- What does $ mean before a string?
- Add spaces before Capital Letters
- Converting dd/mm/yyyy formatted string to Datetime [duplicate]
- Creating a comma separated list from IList or IEnumerable
- Json Convert empty string instead of null
- Get the index of the nth occurrence of a string?
- Is there a C# case insensitive equals operator?
- Escape curly brace ‘{‘ in String.Format [duplicate]
- Why is there no Char.Empty like String.Empty?
- How the StringBuilder class is implemented? Does it internally create new string objects each time we append?
- Can I “multiply” a string (in C#)?
- Java equivalents of C# String.Format() and String.Join()
- Add zero-padding to a string
- Replace Multiple String Elements in C#
- Convert string to hex-string in C#
- string.IsNullOrEmpty(string) vs. string.IsNullOrWhiteSpace(string)
- Remove file extension from a file name string
- C++ string::find complexity
- Parse C# string to DateTime
- Converting String To Float in C#
- How does one extract each folder name from a path?
- How to return text from Native (C++) code
- String.Replace ignoring case
- Convert string to decimal, keeping fractions
- C# Version Of SQL LIKE
- Alternative to multiple String.Replaces [duplicate]
- What is the difference between .Equals and == [duplicate]
- split a string on newlines in .NET
- string.Join on a List or other type
- Write bytes to file
- splitting a string based on multiple char delimiters
- Compare string similarity
- Check if a string is a palindrome
- Do string literals get optimised by the compiler?
- Fastest way to check if string contains only digits in C#
- string.Empty vs null.Which one do you use?
- Checking for null before ToString()