arduino的indexOf
时间: 2023-10-08 11:11:15 浏览: 169
Arduino项目开发 Strings_StringIndexOf_StringIndexOf.pdf
Arduino没有内置的indexOf函数。但是,可以使用C++的std::string库中的find函数来实现类似的功能。例如:
```
String myString = "hello world";
int index = myString.indexOf("world"); // 使用find函数查找字符串中的子字符串
if (index >= 0) {
// 子字符串在原始字符串中被找到
}
```
阅读全文