删除字符串的一部分,但仅当它位于字符串末尾时
2022-08-30 08:05:25
我需要删除字符串的子字符串,但仅当它位于字符串的末尾时。
例如,删除以下字符串末尾的“字符串”:
"this is a test string" -> "this is a test "
"this string is a test string" - > "this string is a test "
"this string is a test" -> "this string is a test"
任何想法的?可能是某种preg_replace,但如何??