るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.165秒)
トップページ > クエリ:I[x] > クエリ:r[x] > クエリ:fixed_encoding?[x]

別のキーワード

  1. regexp fixed_encoding?
  2. _builtin fixed_encoding?
  3. fixed_encoding?
  4. fixed_encoding? regexp
  5. fixed_encoding? _builtin

ライブラリ

クラス

検索結果

Regexp#fixed_encoding? -> bool (27327.0)

正規表現が任意の ASCII 互換エンコーディングとマッチ可能な時に false を返します。

...任意の ASCII 互換エンコーディングとマッチ可能な時に false を返します。

//emlist[例][ruby]{
# -*- coding:utf-8 -*-

r
= /a/
r
.fixed_encoding? # => false
r
.encoding # => #<Encoding:US-ASCII>
r
=~ "\u{6666}...
...# => 2
r
=~ "\xa1\xa2 a".force_encoding("euc-jp") # => 2
r
=~ "abc".force_encoding("euc-jp") # => 0

r
= /a/u
r
.fixed_encoding? # => true
r
.encoding # => #<Encoding:UTF-8>
r
=~ "\u{6666} a"...
...# => 2
begin
r
=~ "\xa1\xa2".force_encoding("euc-jp")
r
escue => e
e.class # => Encoding::CompatibilityError
end
r
=~ "abc".force_encoding("euc-jp") # => 0

r
= /\u{6666}/
r
.fixed_encoding? # => true
r
.encoding...

正規表現 (3282.0)

正規表現 * metachar * expansion * char * anychar * string * str * quantifier * capture * grouping * subexp * selector * anchor * cond * option * encoding * comment * free_format_mode * absenceop * list * specialvar * references

...* metachar
* expansion
* char
* anychar
* string
* str
* quantifier
* capture
* grouping
* subexp
* selector
* anchor
* cond
* option
* encoding
* comment
* free_format_mode
* absenceop
* list
* specialvar
* references


正規表現(regular expression)は文...
...どの場所であるかを知ることができます。

//emlist[][ruby]{
/pat/
%r{pat}
//}

などの正規表現リテラルや Regexp.new などで正規表現
オブジェクトを得ることができます。


===[a:metachar] メタ文字列とリテラル、メタ文字とエスケープ...
...ing # => #<Encoding:UTF-8>
//}

正規表現のエンコーディングと文字列のエンコーディングが非互換で
ある場合、Encoding::CompatibilityError が発生します。

エンコーディングについては spec/m17n も参考にしてください。

R
egexp#fixed_encoding?...