Thread Aus Textdatei nach bestimmten Wort Wörter auslesen (16 answers)
Opened by Gast_13 at 2013-09-12 12:32

Gast wer
 2013-10-10 15:21
#171111 #171111
Code (perl): (dl )
1
2
3
4
5
6
if ($content =~ m{^\.SUBCKT\s+\S+\s+([\w.\s]+?)\s+$}i )                   
{
    my $name1 = $1;
    my @wds = split(/\s+/,$name1);
    ...
}

Last edited: 2013-10-10 15:23:09 +0200 (CEST)

View full thread Aus Textdatei nach bestimmten Wort Wörter auslesen