Arduino内置教程-字符串-字符串长度

释放双眼,带上耳机,听听看~!
你可以用length()命令获得字符串的长度,或者用trim()命令排除多余的字符。这个例子示范怎样用这两个命令。

简介

  • 字符串的 length() 和 trim() 命令
  • 你可以用length()命令获得字符串的长度,或者用trim()命令排除多余的字符。这个例子示范怎样用这两个命令。

硬件要求

  • Arduino or Genuino 开发板

电路

  • 这个例子不需要连接额外的电路,除了你的开发板需要连接到你的电脑,并且打开Arduino IDE的串口监视器窗口。

Arduino内置教程-字符串-字符串长度

样例代码

  • trim()用于你知道有一些不想干的空白字符在字符串的开始或者结尾,而你想删掉他们。空白字符是字符需要留白的时候用的。它包括单独的space(ASCII 32), tab (ASCII 9), vertical tab (ASCII 11), form feed (ASCII 12), carriage return (ASCII 13), 或者 newline (ASCII 10)。下面的例子示范了一个带有空白字符的字符串,在前面和后面删除:
void setup() {
  // Open serial communications and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for native USB port only
  }

  // send an intro:
  Serial.println("\n\nString  length() and trim():");
  Serial.println();
}

void loop() {
  // here's a String with empty spaces at the end (called white space):
  String stringOne = "Hello!       ";
  Serial.print(stringOne);
  Serial.print("<--- end of string. Length: ");
  Serial.println(stringOne.length());

  // trim the white space off the string:
  stringOne.trim();
  Serial.print(stringOne);
  Serial.print("<--- end of trimmed string. Length: ");
  Serial.println(stringOne.length());

  // do nothing while true:
  while (true);
}

给TA打赏
共{{data.count}}人
人已打赏
ArduinoArduino-官方内置动态

Arduino内置教程-字符串-字符串索引Index Of

2019-1-6 10:53:11

ArduinoArduino-官方内置动态

Arduino内置教程-字符串-字符串替换

2019-1-6 12:54:50

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索
'); })();