0
I'm having some parsing issues here. I have a column of Twitter handles, with '@' in front of them, and I'm trying to auto-append them in a URL on the next column.
Example:
| @Bob | https://twitter.com/@Bob |
The code in the second cell is ="https://twitter.com/"&A17.
How do I either filter out the '@' symbols or append beginning from the second character in the string (which I would do with str[1:] in Python).