19.11.2018, 20:57
Of course, you can. You can either work it out with your own algorithm or use one of the community string manupilation libraries, there are a few.
You can also consider looking at this: https://forum.sa-mp.com/showpost.php...95&postcount=5
Make use of that function like this:
You can also consider looking at this: https://forum.sa-mp.com/showpost.php...95&postcount=5
Make use of that function like this:
PHP код:
new string[] = "Some text, # some other text.";
strreplace(string, "#", "");
// should result in this: Some text, some other text.