Buradaki cevapların büyük çoğunluğu düzenlenen bölüme cevap vermiyor, sanırım daha önce eklenmişlerdi. Bir cevaptan bahsedildiği gibi regex ile yapılabilir. Farklı bir yaklaşımım vardı.
Bu işlev $ dizesini arar ve $ offset konumundan başlayarak $ start ve $ end dizeleri arasındaki ilk dizeyi bulur . Daha sonra, sonucun başlangıcını göstermek için $ ofset konumunu günceller. $ İncludeDelimiters true olursa, sonuçtaki sınırlayıcıları içerir.
$ Start veya $ end dizesi bulunmazsa, null değerini döndürür. $ String, $ start veya $ end boş bir dize ise null değerini döndürür.
function str_between(string $string, string $start, string $end, bool $includeDelimiters = false, int &$offset = 0): ?string
{
if ($string === '' || $start === '' || $end === '') return null;
$startLength = strlen($start);
$endLength = strlen($end);
$startPos = strpos($string, $start, $offset);
if ($startPos === false) return null;
$endPos = strpos($string, $end, $startPos + $startLength);
if ($endPos === false) return null;
$length = $endPos - $startPos + ($includeDelimiters ? $endLength : -$startLength);
if (!$length) return '';
$offset = $startPos + ($includeDelimiters ? 0 : $startLength);
$result = substr($string, $offset, $length);
return ($result !== false ? $result : null);
}
Aşağıdaki işlev iki dize (çakışma olmadan) arasındaki tüm dizeleri bulur . Önceki işlevi gerektirir ve bağımsız değişkenler aynıdır. Yürütme sonrasında $ offset, bulunan son sonuç dizesinin başlangıcını gösterir.
function str_between_all(string $string, string $start, string $end, bool $includeDelimiters = false, int &$offset = 0): ?array
{
$strings = [];
$length = strlen($string);
while ($offset < $length)
{
$found = str_between($string, $start, $end, $includeDelimiters, $offset);
if ($found === null) break;
$strings[] = $found;
$offset += strlen($includeDelimiters ? $found : $start . $found . $end); // move offset to the end of the newfound string
}
return $strings;
}
Örnekler:
str_between_all('foo 1 bar 2 foo 3 bar', 'foo', 'bar')
verir [' 1 ', ' 3 ']
.
str_between_all('foo 1 bar 2', 'foo', 'bar')
verir [' 1 ']
.
str_between_all('foo 1 foo 2 foo 3 foo', 'foo', 'foo')
verir [' 1 ', ' 3 ']
.
str_between_all('foo 1 bar', 'foo', 'foo')
verir []
.
\Illuminate\Support\Str::between('This is my name', 'This', 'name');
, uygundur. laravel.com/docs/7.x/helpers#method-str-between