Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

remove last character from string in php

$arrStr = 'Str1, Str2, str3, ';
echo rtrim($arrStr, ", "); //Str1, Str2, str3
echo substr_replace($arrStr, "", -2); //Str1, Str2, str3
echo substr($arrStr, 0, -2); // Str1, Str2, str3
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #character #string #php
ADD COMMENT
Topic
Name
3+4 =