Serial.read: interrupted string

Hi SurferTim,

thank you for your quick reply. Your suggestion solved the problem. I put a 1 milli delay inside the while loop:

// delay(10);    // Delay waiting for answer
        while (Serial2.available()) {
          character = Serial2.read();
          SensorIn.concat(character);
          delay (1);
          }

Thanks a lot.