我需要从数组中删除反斜杠。
use strict;
use warnings;
use Time::HiRes qw(sleep);
use Test::WWW::Selenium;
use Test::More "no_plan";
use Test::Exception;
@array = "qwerty-uioplkjadsfcxhbdhjjkgkmnvkgmkgmkgkglmzbcd\-\dfgtg\qwerty";
我需要\
在上面的数组中删除。我试过了,@array =~ s/\\//;
但我做不到。
从数组中删除反斜杠后,数组应包含如下内容:
print @array;
output:
qwerty-uioplkjadsfcxhbdhjjkgkmnvkgmkgmkgkglmzbcd - dfgtg qwerty
我怎样才能删除反斜杠?