Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created January 6, 2019 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carloscds/1bbdbab5652f0b73b2ba110d7444cc89 to your computer and use it in GitHub Desktop.
Save carloscds/1bbdbab5652f0b73b2ba110d7444cc89 to your computer and use it in GitHub Desktop.
string str = "Exemplo em C# 8";
string palavra = str[^4..^0];
Console.WriteLine(palavra);
string final = str[^4..];
Console.WriteLine(final);
string inicio = str[..7];
Console.WriteLine(inicio);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment