るりまサーチ

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

別のキーワード

  1. _builtin delete
  2. _builtin delete_if
  3. cgi delete
  4. net/pop delete_all
  5. pop3 delete_all

ライブラリ

検索結果

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

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

..."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#d...