Question about text

Is there a way to add and remove characters from text?

Sure, lots of ways. What in particular are you trying to do?

1 Like

Im trying to add and remove text so I can get ids from it as well as extra data from the first letter of text

I’m still not 100% sure what you’re doing, but you can use split to break text into a list of words or characters and then join to convert the list back into text again.

So to get the first letter of some text you can split the text using the empty string “” to get a list of all characters, then pop the first item off of the list to access the first char.

2 Likes