Public String var='public String var1=\'Some text\'; ' ;
I require this string inside var to execute and create a variable "Var1" and assigned with the value "Some text".
Is it possible to do this? If Yes then how will it be possible?
Public String var='public String var1=\'Some text\'; ' ;
I require this string inside var to execute and create a variable "Var1" and assigned with the value "Some text".
Is it possible to do this? If Yes then how will it be possible?
Copyright © 2021 Jogjafile Inc.
Yes, sort of. It is possible to mimic a Javascript eval() in Apex by making a callout to the executeAnonymous API method.
There are two common ways you can get a response back from executeAnonymous.
Using my example the Apex would be something like:
You might not be able to perform the callout during member initialisation or in a constructor.
Incidentally, the Salesforce Stackexchange site is a great place to ask Salesforce specific questions.