in reply to What regex will swap somewebpage/ with somewebpage/index.html ??

srawls, your .= solution doesn't work in this case: http://www.something.com/something (one of the formats the poster was expecting). Trying, perhaps a conditional statement would fix your solution:

if($address =~ m!/$!) { $address .= 'index.html' } else { $address .= '/index.html' }

As per srawls' last solution offered, you can add a simple regex check to the condition clause, as well, if only certain $address variables are desired.
  • Comment on Re: What regex will swap somewebpage/ with somewebpage/index.html ??
  • Download Code