Hello and thank you for reading this!
Say, I have a string like this:
This {p=1}is {p=2.3}a {p=200}sample {p=1.0}text.
And I want to strip all the {p=?} tags from this string so I would have:
This is a sample text.
How can I do that?
Many thanks.
Develop games in your browser. Powerful, performant & highly capable.
Here you go:
dropbox.com/s/11yjxh12re0wo4h/RemoveTagsFromText.c3p
You can also do this with regex, but I don't know how :)
Wow! That's pretty neat.
Thanks a bunch dop2000.