module ERB::Util

[edit]

要約

eRubyスクリプトのためのユーティリティを提供するモジュールです。

目次

モジュール関数

モジュール関数

html_escape(s) -> String[permalink][rdoc][edit]
h(s) -> String

文字列 s を HTML用にエスケープした文字列を返します。

文字列 s 中に含まれる &"<> を、実体参照 &amp; &quot; &lt; &gt; にそれぞれ変更した文字列を返します (CGI.escapeHTMLとほぼ同じです)。

[PARAM] s:
HTMLエスケープを行う文字列


require "erb"
include ERB::Util

puts html_escape("is a > 0 & a < 10?")
# is a &gt; 0 &amp; a &lt; 10?
url_encode(s) -> String[permalink][rdoc][edit]
u(s) -> String

文字列 s を URLエンコードした文字列を返します。

文字列 s 中に含まれる 2バイト文字や半角スペースについて URL エンコードを行った文字列を返します(CGI.escapeとほぼ同じです)。

[PARAM] s:
URLエンコードを行う文字列


require "erb"
include ERB::Util

puts url_encode("Programming Ruby:  The Pragmatic Programmer's Guide")
# Programming%20Ruby%3A%20%20The%20Pragmatic%20Programmer%27s%20Guide