So you don’t want the hash tag… Then you could do replace(t, "#", "")
or substring(t, 1)
instead of the t
inside of split. Or you could do a regexreplace on the entire string, maybe something like regexreplace(t, "#.*\/?(.*)", "$1")
instead of the slice and split combo.
All of these are untested, and written in the dark of the night, so if they’re not working I’ll do better tomorrow.