我使用 Eclipse 和 Arduino。
我想在字符串中添加一个字符。我尝试使用追加,插入(但这些无法解决)我尝试使用 += 但是当我打印字符串时它总是有一个字符。基本上我删除字符串并只写入我想要添加的新字符。我也尝试过 concat 并且它做同样的事情。而且 strcat 让我对操作数感到头疼,因为它需要一个 const char 指针,我想添加一个改变的 char。
while (theSettings.available()) {
character = theSettings.read();
if(character == '/') {
// Comment - ignore this line
while(character != '\n'){
character = theSettings.read();
}
} else if(isalnum(character)){ // Add a character to the description
Serial.println(character);
description +=character;
//description.concat(character);
Serial.println(description);
}