I have a json string like
jsonvariable = “{”“name”“: ““Newbie Uipath””}”
I want to replace the “Newbie Uipath” to - year + “Newbie” +timestamp+ “Uipath” .
For that i have assigned paramName = year + “Newbie” +timestamp+ “Uipath”
I checked the value of jsonVar only.Its giving only empty value for name key.
Its replacing the ‘Newbie Uipath’ value given in jsonvariable string to empty value.
@john.teena paramName will not be available at the beginning right, After you get the year and Timestamp, you combine it and then you assign it to paramName variable.
So at the beginning, when you execute the workflow, the Default values will be initialised first, but Since paramName is not initialised, it is Empty. Hence when you use replace operation in Default value , the “Newbie Uipath” will be replaced with Empty. So when you output the value, it will be blank.