fork download
  1. using static System.Console;
  2.  
  3. public class Program
  4. {
  5. public static void Main()
  6. {
  7. var texto = "~/Areas/Teste/Views/home/index.cshtml";
  8. var inicioPalavra = texto.IndexOf('/', texto.IndexOf('/') + 1);
  9. var palavra = texto.Substring(inicioPalavra + 1, texto.IndexOf('/', inicioPalavra + 1) - inicioPalavra - 1);
  10. WriteLine(palavra);
  11. //segunda forma
  12. var palavras = texto.Split('/');
  13. WriteLine(palavras[2]);
  14. }
  15. }
  16.  
  17. //https://pt.stackoverflow.com/q/35400/101
Success #stdin #stdout 0.02s 16292KB
stdin
Standard input is empty
stdout
Teste
Teste