My challenge involves a string like the following :
"{"element":"634634"}"
My goal is to eliminate {"element":"
which remains constant, as well as the final character "}
.
The only variable component is 634634
.
How can I achieve this?
Alternatively, can anyone provide guidance on the following:
I have an array like the one shown below:
https://i.sstatic.net/Yy927.png I am looking to create an array of strings (myArray: string[]) that includes "734734", "utruytuyt", ... Is this feasible?
Thank you