Loading...
Logo
Processing Forum

Array help

in Programming Questions  •  1 year ago  
Hi

i'm fairly new to processing, and i'm having some problem with a bunch of code. i'm working with strings, as you can see in the code, but it seems that i con't just add an item (string in this case) to the array by just giving it the next number in line...

What i mean is that i want to add a string to String strCmds[] by doing strCmds[strCmds.length] = "Hello"

Copy code
  1. String recCmds[] = {"Sstringtest,,90,,250","SHello world,,10,,10"};
  2. String strCmds[] = {};
  3. PFont font;
  4. boolean printString = true;

  5. void setup() {
  6.   size(500,500);
  7.   font = createFont("Arial",14,false);
  8.   textFont(font);
  9. }

  10. void draw() {
  11.   //checkStr(recCmds);
  12.   //drawStrings(strCmds);
  13.   if (printString) {
  14.     for(int i=0; i<recCmds.length; i++) {
  15.       if(recCmds[i].substring(0,1) == "S") {
  16.         strCmds[strCmds.length] = recCmds[i].substring(1);
  17.         println(recCmds[i] + "   ,   " + strCmds[strCmds.length-1]);
  18.         println("OK");
  19.       }
  20.     }
  21.     for(int i=0; i<strCmds.length; i++) {
  22.       String[] comm = split(strCmds[i], ",,");
  23.       if(comm.length == 3) {
  24.         text(comm[0], float(comm[1]), float(comm[2]));
  25.       }
  26.     }
  27.     printString = false;
  28.   }
  29. }
Thanks in advance!

Nick

Replies(4)

Re: Array help

1 year ago
Arrays are not infinite in their size; in fact, in order to increase their size, you have to create a new array that is exactly the same in all ways except for the fact that it is one item longer. If you want a dynamically expandable array implementation, see ArrayList.

If that's too advanced for the time being, then the next best option is to use the append() function, which carries out the expansion process described above. The way that it must be used is slightly confusing, although there is an example of it in the above link:

Copy code
  1. arrayToExpand = append(arrayToExpand, elementToAdd);

Re: Re: Array help

1 year ago
fantastic! it works like a charm :)

now there's only one other thing, it seems like 

Copy code
  1. if(recCmds[0].substring(0,1) == "S" ) {
  2. ...
  3. }

is not working, even when

Copy code
  1. recCmds[0] = "Shello world,,10,,10"
which is odd imo

Re: Array help

1 year ago
That would work if you were using charAt(), because it returns a char value.
When dealing with Strings, however, comparison is not as easy; you need to use String. equals().
See the Processing Wiki article for more information.

In your code, that would be:

Copy code
  1. if(recCmds[0].substring(0,1).equals("S") ) {
  2.   ...
  3. }

Re: Re: Array help

1 year ago
ok, well it seems i still have a lot to learn then :)

thanks for all this, it work fine now