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.

There were to many discussion about url escaping in ruby, but unfortunately I didn't find appropriate solution. In general URI.escape should do the job, but looks like it doesn't support all characters, for example it doesn't escape "[".

URI.parse(URI.escape("1111{3333")) - works well URI.parse(URI.escape("1111[3333")) - raise exception

I understand that "[" it's not eligible character in url according to RFC, but when I enter it to browser, it takes it, and renders the page, so I need exactly the same behavior.

Do know any ready solution for escaping in ruby?

share|improve this question

2 Answers

up vote 3 down vote accepted

I typically use

CGI.escape

for escapinf uri parameters. You can try it out. You need to require 'cgi'.

CGI.escape('1111[3333')
=> "1111%5B3333" 
share|improve this answer
Thanks, looks like it does everything I need – com Jan 3 '12 at 9:32
the strange thing is, CGI.escape('1111 3333') = "1111+3333", which is should be "1111%203333", but actually links works also with "+" – com Jan 4 '12 at 12:25

The character [ is a uri delimiter character and does not require escaping.

http://www.ietf.org/rfc/rfc2396.txt section 2.4.3. Excluded US-ASCII Characters

share|improve this answer

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.