Add to the end of a string?

Going off from my other post, I'm using text manipulation to extract text (being a couple numbers) from the title of a notification which I got working, I've already learnt how to go the array route for my situation, but now I'm wondering how to add those numbers to the end of a string variable (just like how you can prepend text into a text file), and does simply checking if another strings value is contained within it work or would it be more complicated than that?
 

Pseudocyclic

Well-known member
Use the Set Variable action to save the new text to a string variable and then use the same action again to combine the two string variables.
 
Use the Set Variable action to save the new text to a string variable and then use the same action again to combine the two string variables.
Nvm I finally figured it out by MYSELF since everyone's so vague about the combining part of my question -
Screenshot_20220731-190904_MacroDroid.jpg
Now I can most likely pull off the next part being to check if the value for the first string exists within the second string before adding it.
 
Top