create variable from String
in
Programming Questions
•
3 months ago
Hi,
I had to create new String who had the name an element of another String - imported with Open Sound Control :
for example I receive this message :
I saw a similar question in the forum, and the response was the use of "HashMap" ?
thanks a lot
I had to create new String who had the name an element of another String - imported with Open Sound Control :
for example I receive this message :
- String inputOSC = "/in/vox/amp";
- // this don't work :
String inputOSC = "/in/vox/amp";
String[] splitInputOSC = splitTokens(inputOSC, "/");
String splitInputOSC[1] = "myNewString";
I saw a similar question in the forum, and the response was the use of "HashMap" ?
thanks a lot
1