How would I go about adding a character to a certain string? I thought it would be something like "String = String + Character" but that doesn't work, and I can't find anything online...

Can you share the code you are using? I think string_var = string_var + "character" should work. You should also be able to add individual characters too, using something like string_var = string_var + "a".

2 years later