るりまサーチ

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

別のキーワード

  1. fileutils options_of
  2. _builtin of
  3. objspace memsize_of
  4. objspace memsize_of_all
  5. object kind_of?

ライブラリ

クラス

検索結果

Symbol#start_with?(*prefixes) -> bool (21312.0)

self の先頭が prefixes のいずれかであるとき true を返します。

...elf の先頭が prefixes のいずれかであるとき true を返します。

(self.to_s.start_with?と同じです。)

@param prefixes パターンを表す文字列または正規表現 (のリスト)

@see Symbol#end_with?

@see String#start_with?

//emlist[][ruby]{
:hello.start_with?("hell"...
...) #=> true
:hello.start_with?(/H/i) #=> true

# returns true if one of the prefixes matches.
:hello.start_with?("heaven", "hell") #=> true
:hello.start_with?("heaven", "paradise") #=> false
//}...