escape

escape(*arg)
Instance Public methods

Synopsis

1
URI.escape(str [, unsafe])

Args

str

String to replaces in.

unsafe

Regexp that matches all symbols that must be replaced with codes. By default uses REGEXP::UNSAFE. When this argument is a String, it represents a character set.

Description

Escapes the string, replacing all unsafe characters with codes.

Usage

1
2
3
4
5
6
7
8
9
10
11
require 'uri'
 
enc_uri = URI.escape("http://example.com/?a=\11\15")
p enc_uri
 
p URI.unescape(enc_uri)
 
p URI.escape("@?@!", "!?")
# => "@%3F@%21"

encode

doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.