String to string
in
Programming Questions
•
2 years ago
Dear all,
I am trying to acces information from strings, and make a news string of that.
What I want is this:
String[] DTL = {
"Prokryon", //0
"Argo", //1
"Paradox", //2
"Fleischmann", //3
};
String[] OURTYPE = {
"Sansa", //0
"Arnhem", //1
"Fresco", //2
};
String[] Collected = {
"OURTYPE[1]" // I want it to be the same as Arnhem
"DTL[1]" // I want it to be the same as Argo
Is this somehow posible?
Kind regards,
Joshua
I am trying to acces information from strings, and make a news string of that.
What I want is this:
String[] DTL = {
"Prokryon", //0
"Argo", //1
"Paradox", //2
"Fleischmann", //3
};
String[] OURTYPE = {
"Sansa", //0
"Arnhem", //1
"Fresco", //2
};
String[] Collected = {
"OURTYPE[1]" // I want it to be the same as Arnhem
"DTL[1]" // I want it to be the same as Argo
Is this somehow posible?
Kind regards,
Joshua
1