can't seem to figure out how to secure the '\' character

Ben wrote:

when I do: if sURL.include? "\", there is an error... How would I ask if the var sURL contained the \ character? Do I have to do any escaping? thanks.

Yes, you're basically escaping the quotation mark now. Do sURL.include?("\\") instead.