chrismassey
Programmer
Hi,
I have 3 Perl conditions:
if (($n_carry_pu eq "") || ($n_carry_pu eq $fslash)) { $top_level = "x"; }
if (substr($new_path_we, -1) eq ".") { $top_level = "x"; }
I want to make the above code simpler by combining all 3 conditions. I tried:
if (($n_carry_pu eq (("") || ($fslash))) || (substr($new_path_we, -1) eq ".") { $top_level = "x"; }
But I have had no luck.
Any help will be greatly appreciated.
Chris
I have 3 Perl conditions:
if (($n_carry_pu eq "") || ($n_carry_pu eq $fslash)) { $top_level = "x"; }
if (substr($new_path_we, -1) eq ".") { $top_level = "x"; }
I want to make the above code simpler by combining all 3 conditions. I tried:
if (($n_carry_pu eq (("") || ($fslash))) || (substr($new_path_we, -1) eq ".") { $top_level = "x"; }
But I have had no luck.
Any help will be greatly appreciated.
Chris