laravel-ja / ja-docs-8.x

Laravel8x公式ドキュメントの日本語翻訳リポジトリです。公式は英語のみですので、翻訳を公式と呼ばないでください。
MIT License
17 stars 22 forks source link

Str::beforeLast() の誤訳を修正 #44

Closed mumincacao closed 3 years ago

mumincacao commented 3 years ago

指定値が現れる最初の場所から前の部分を返すのは Str::before() の動作で Str::beforeLast() は最後の出現場所から前の部分を返します。

>>> Str::before('This is my name', 'is');
=> "Th"
>>> Str::before('This is island', 'is');
=> "Th"
>>>
>>> Str::beforeLast('This is my name', 'is');
=> "This "
>>> Str::beforeLast('This is island', 'is');
=> "This is "
HiroKws commented 3 years ago

ありがとうございました。