2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
|
|
@ -7,12 +7,22 @@ String.starts_with?(s1, s3)
|
|||
String.starts_with?(s2, s3)
|
||||
# => false
|
||||
|
||||
String.contains?(s1, s3)
|
||||
# => true
|
||||
String.contains?(s2, s3)
|
||||
# => true
|
||||
|
||||
String.ends_with?(s1, s3)
|
||||
# => false
|
||||
String.ends_with?(s2, s3)
|
||||
# => true
|
||||
|
||||
String.contains?(s1, s3)
|
||||
# => true
|
||||
String.contains?(s2, s3)
|
||||
# => true
|
||||
|
||||
# Optional requirements:
|
||||
Regex.run(~r/#{s3}/, s1, return: :index)
|
||||
# => [{0, 2}]
|
||||
Regex.run(~r/#{s3}/, s2, return: :index)
|
||||
# => [{2, 2}]
|
||||
|
||||
Regex.scan(~r/#{s3}/, "abcabc", return: :index)
|
||||
# => [[{0, 2}], [{3, 2}]]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue