Dear fellow developers, I have a question that I can't solve on my own.

Is there a way to access the content of a string through its string name, that is itself the string content of another string?

For example:
STRING* content_str = “This is a test!”;
STRING* name_str = “content_str”;

Is it possible to access or copy “This is a test!” through name_str? I want to use entity.string1 to point to another string.

Maybe someone can point my in the right direction.