Answers for "php string cut last character"

PHP
24

php remove last character in string

//Remove the last character using substr
$string = substr($string, 0, -1);
Posted by: Guest on April-02-2020
9

remove last letter php

<?php
echo substr('abcdef',0, -1);     // abcde
?>
Posted by: Guest on June-09-2020
5

php remove last character from string

$hell = substr('hello', 0, -1);
Posted by: Guest on November-04-2019
1

php extract last n words of string

<?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"
} */
Posted by: Guest on May-31-2021
0

remove last character from string php

$newarraynama = rtrim($arraynama, ", ");
Posted by: Guest on April-24-2021

Code answers related to "php string cut last character"

Browse Popular Code Answers by Language