我有一个包含abc.txt
表单数据的文件
sHost = "Arun";
sUid ="Abc";
我想Arun
使用sHost
Perl 等等。我的代码:
my $filename = "abc.txt";
use strict;
use warnings;
open(my $fh, '<:encoding(UTF-8)', $filename)
or die "Could not open file '$filename' $!";
while (my $row = <$fh>)
{
chomp $row;
if ($row=~m/sHost/)
{
print $row;
}
}
我得到的输出sHost = Arun;
但我只想要'Arun'
. 我应该在这里应用什么逻辑?我对 Perl 和 Linux 很陌生。