Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a string let's say http://someUrul.com/someController/SOmeAction?SomeQS=http://someOtherUrl

and I want to replace the first http with https, but not the second, so I end up with https://someUrul.com/someController/SOmeAction?SomeQS=http://someOtherUrl

How can I accomplish this with a simple gsub? The following replaces both.

request.url.gsub(/http:/, "https:")
share|improve this question

1 Answer

up vote 15 down vote accepted

Use sub, not gsub. gsub is global, sub isn't.

share|improve this answer
Thank you! I'm...just getting started with RoR, and the language/framework is still a little uncomfortable...I'm a C#/JS guy. – ar3 Jul 21 '11 at 20:25
4  
At least you've seen the light :D – mikhailvs Jul 21 '11 at 20:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.