Zdecydowana większość odpowiedzi tutaj nie odpowiada edytowanej części, myślę, że zostały dodane wcześniej. Można to zrobić za pomocą wyrażenia regularnego, jak wspomina jedna z odpowiedzi. Miałem inne podejście.
Ta funkcja wyszukuje ciąg $ string i znajduje pierwszy ciąg między $ start i $ end, zaczynając od pozycji $ offset. Następnie aktualizuje pozycję przesunięcia $, aby wskazywała początek wyniku. Jeśli $ includeDelimiters ma wartość true, uwzględnia separatory w wyniku.
Jeśli ciąg $ start lub $ end nie zostanie znaleziony, zwraca wartość null. Zwraca również null, jeśli $ string, $ start lub $ end są pustym łańcuchem.
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);
}
Następująca funkcja znajduje wszystkie ciągi, które znajdują się między dwoma ciągami (bez nakładania się). Wymaga poprzedniej funkcji, a argumenty są takie same. Po wykonaniu, $ offset wskazuje początek ostatnio znalezionego ciągu wynikowego.
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;
}
Przykłady:
str_between_all('foo 1 bar 2 foo 3 bar', 'foo', 'bar')
daje [' 1 ', ' 3 ']
.
str_between_all('foo 1 bar 2', 'foo', 'bar')
daje [' 1 ']
.
str_between_all('foo 1 foo 2 foo 3 foo', 'foo', 'foo')
daje [' 1 ', ' 3 ']
.
str_between_all('foo 1 bar', 'foo', 'foo')
daje []
.
\Illuminate\Support\Str::between('This is my name', 'This', 'name');
jest to wygodne. laravel.com/docs/7.x/helpers#method-str-between