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

释放双眼,带上耳机,听听看~!
字符串replace()函数允许你用另一个字符来替换特定的字符。你也可以用不同的子字符串来替换一个字符串的子字符串。

简介

  • 字符串replace()函数允许你用另一个字符来替换特定的字符。你也可以用不同的子字符串来替换一个字符串的子字符串。

硬件要求

  • Arduino or Genuino 开发板

电路

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

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

样例代码

  • 注意:如果你想用一个超过字符串长度的子字符串来替换字符串,将会什么都没发生。如:
String stringOne = "<html><head><body>";   
String stringTwo = stringOne.replace("<html><head></head><body></body></html>", "Blah"); 
  • 这种情况下,代码可以编译,但是stringOne仍然保持不变,因为替换的子字符串超出字符串的长度。
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  replace:\n");
  Serial.println();
}

void loop() {
  String stringOne = "<html><head><body>";
  Serial.println(stringOne);
  // replace() changes all instances of one substring with another:
  // first, make a copy of th original string:
  String stringTwo = stringOne;
  // then perform the replacements:
  stringTwo.replace("<", "</");
  // print the original:
  Serial.println("Original string: " + stringOne);
  // and print the modified string:
  Serial.println("Modified string: " + stringTwo);

  // you can also use replace() on single characters:
  String normalString = "bookkeeper";
  Serial.println("normal: " + normalString);
  String leetString = normalString;
  leetString.replace('o', '0');
  leetString.replace('e', '3');
  Serial.println("l33tspeak: " + leetString);

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

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

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

2019-1-6 11:51:11

ArduinoArduino-官方内置动态

Arduino内置教程-字符串-检测字符串开头和结尾字符

2019-1-6 13:58:05

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