fork(1) download
  1. using System;
  2. using System.IO;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string texto =
  9. @"Isto é um exemplo. E quero que na label1 apareceça o que está dentro de aspas.
  10. Ou seja, o texto que se encontra ""aqui.txt"".
  11. Porém a label1 não sabe o que estará na textbox.";
  12.  
  13. int valorPos = texto.IndexOf(@"""") + 1;
  14. string valorEntreAspas = texto.Substring(valorPos, texto.IndexOf(@"""", valorPos) - valorPos);
  15. string arquivoSemExtensao = Path.GetFileNameWithoutExtension(valorEntreAspas);
  16.  
  17. Console.WriteLine(arquivoSemExtensao); // aqui.txt
  18. Console.ReadLine();
  19. }
  20. }
Success #stdin #stdout 0.07s 24568KB
stdin
Standard input is empty
stdout
aqui