Arduino内置教程-字符串-子字符串函数

释放双眼,带上耳机,听听看~!
字符串函数substring()和charAt(), startsWith() ,endsWith()很相似。它允许你在一个给定的字符串里寻找一个特定子字符串的例子。

简介

  • 字符串函数substring()和charAt(), startsWith() ,endsWith()很相似。它允许你在一个给定的字符串里寻找一个特定子字符串的例子。

硬件要求

  • Arduino or Genuino开发板

电路

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

Arduino内置教程-字符串-子字符串函数

样例代码

  • substring()带着一个参数,从给定字符串的位置到字符串的尾部,寻找一个特定的子字符串。它要求子字符串延长到字符串的尾部。如:
String stringOne = "Content-Type: text/html";

  // substring(index) looks for the substring from the index position to the end:
  if (stringOne.substring(19) == "html") {
   }

为真,则

 String stringOne = "Content-Type: text/html";

  // substring(index) looks for the substring from the index position to the end:
  if (stringOne.substring(19) == "htm") {
   }

为假。因为字符串还有一个“l”在htm后面。

  • substring()带着两个参数,从第一个参数到第二个参数,寻找一个子字符串。如:
 String stringOne = "Content-Type: text/html";

  // you can also look for a substring in the middle of a string:
  if (stringOne.substring(14,18) == "text") {

  } 
  • 这是从字符串的位置14到18,寻找一个单词文本。
  • 注意:确保你的索引值在字符串的长度之内,否则你会得到不可预测的结果。如果起始位置超过字符串的长度,而终止位置没有,这种错误可能会特别困难找出substring() 的第二个例子。
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  substring():");
  Serial.println();
}

void loop() {
  // Set up a String:
  String stringOne = "Content-Type: text/html";
  Serial.println(stringOne);

  // substring(index) looks for the substring from the index position to the end:
  if (stringOne.substring(19) == "html") {
    Serial.println("It's an html file");
  }
  // you can also look for a substring in the middle of a string:
  if (stringOne.substring(14, 18) == "text") {
    Serial.println("It's a text-based file");
  }

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

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

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

2019-1-6 13:58:05

ArduinoArduino-官方内置动态

Arduino内置教程-字符串-字符串转换成整数

2019-1-6 15:53:27

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