如何在 Arduino 中从索引 n 打印字符数组
How to print char array from index n in Arduino
假设我有
String x = "hello there";
所以我可以从索引中打印它,例如1 作为:
Serial.println(x.substring(1));
ello there
我想对
做同样的事情
char x[] = "hello there";
有什么想法吗? (使用循环逐字符打印除外)
您可以使用 & 运算符获取所需索引后的字符串,如下所示:
Serial.println(&x[1]);
假设我有
String x = "hello there";
所以我可以从索引中打印它,例如1 作为:
Serial.println(x.substring(1));
ello there
我想对
做同样的事情char x[] = "hello there";
有什么想法吗? (使用循环逐字符打印除外)
您可以使用 & 运算符获取所需索引后的字符串,如下所示:
Serial.println(&x[1]);