るりまサーチ

最速Rubyリファレンスマニュアル検索!
8件ヒット [1-8件を表示] (0.175秒)
トップページ > クエリ:t[x] > クエリ:Ruby[x] > 種類:インスタンスメソッド[x] > クエリ:r[x] > クラス:String[x] > クエリ:delete[x] > クエリ:start_with?[x]

別のキーワード

  1. _builtin delete
  2. _builtin to_r
  3. _builtin delete_if
  4. cgi delete
  5. pop delete_all

ライブラリ

検索結果

String#start_with?(*prefixes) -> bool (30320.0)

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

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

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

//emlist[例][ruby]{
"string".start_with?("str") # => true
"string".start_with?("ing") # => false
"string".start_with?("ing", "str")...
...# => true
"string".start_with?(/\w/) # => true
"string".start_with?(/\d/) # => false
//}

@see String#end_with?
@see String#delete_prefix, String#delete_prefix!...