I have extracted the following from a string and assigned it to arrPath
, i.e.:
arrPath = "myArray[0]";
I also have an object path that points to a value but I need to take the value of arrPath
and use this in my object path, i.e.
myPath.sheet.value.arrPath.info.status
Unfortunately this is not working for me as I basically need the path to look like the following:
myPath.sheet.value.myArray[0].info.status
in order to access the value.
I have had a look at other potential solutions but can't seem to locate one that will assist with my question.