Is there any way available to give start and ending value to the string and string copy all that values in c#
e.g
My name is testing.
Now i want to copy 'name is'
from the string how i can achieve. I don’t have any specific length of the string, It could be increase and decrease.
Try String.IndexOf and String.Substring.