What is fastest way to remove the last character from a string?
I have a string like
a,b,c,d,e,
I would like to remove the last ‘,’ and get the remaining string back:
OUTPUT: a,b,c,d,e
What is the fastest way to do this?
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
First, I try without a space,
rtrim($arraynama, ",");
and get an error result.Then I add a space and get a good result: