Skip to content

Instantly share code, notes, and snippets.

@vanderlei-dev
Last active July 22, 2020 00:53
Show Gist options
  • Save vanderlei-dev/b8b417dd8aee883fa320f69cd411329c to your computer and use it in GitHub Desktop.
Save vanderlei-dev/b8b417dd8aee883fa320f69cd411329c to your computer and use it in GitHub Desktop.
public string FormatarCpf(string cpf)
{
// cpf: 12345678909
return $"{cpf.Substring(0, 3)}." + // 123.
$"{cpf.Substring(3, 3)}." + // 456.
$"{cpf.Substring(6, 3)}-" + // 789-
$"{cpf.Substring(9, 2)}"; // 09
// resultado: 123.456.789-09
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment