- or download this
#!/usr/bin/perl -w
#1 line checker
...
$str="Hello\(\n";
$true=($str=~m/$m/);
print $true , "\n";
- or download this
liord@analog4 188 > ~/linecheck.pl
(
Unmatched ( in regex; marked by <-- HERE in m/( <-- HERE / at /users/l
+iord/linecheck.pl line 7.
Exit 9
- or download this
#!/usr/bin/perl -w
#1 line checker
...
$str="Hello\(\n";
$true=($str=~m/\(/);
print $true , "\n";