PowerShell, Strings PowerShell $texto='La casa nueva de Pablo' Get-Content F:\power\diccionario\dict.txt | %{ if($texto -match $_){ $_ } } 123456 $texto='La casa nueva de Pablo'Get-Content F:\power\diccionario\dict.txt | %{if($texto -match $_){$_}}