Php Extract Last N Words Of String

[Solved] Php Extract Last N Words Of String | Php - Code Explorer | yomemimo.com
Question : get last word from string php

Answered by : condemned-cobra-iun610usgyh9

function getLastWord($string) { $string = explode(' ', $string); $last_word = array_pop($string); return $last_word; }

Source : | Last Update : Fri, 05 Mar 21

Question : php extract last n words of string

Answered by : jonah-lawrence

<?php
$str = "NAME WITH SPACES FIELD1 FIELD2 FIELD3 FIELD4";
preg_match("/(\S+)\s(\S+)\s(\S+)\s(\S+)$/", $str, $matches);
var_dump($matches);
/* array(5) { [0] => string(27) "FIELD1 FIELD2 FIELD3 FIELD4" [1] => string(6) "FIELD1" [2] => string(6) "FIELD2" [3] => string(6) "FIELD3" [4] => string(6) "FIELD4"
} */

Source : https://stackoverflow.com/questions/64779309/preg-split-matching-preset-number-of-instances-from-right-to-left/64779343#64779343 | Last Update : Mon, 07 Jun 21

Answers related to php extract last n words of string

Code Explorer Popular Question For Php