arduino常用字符串处理方法(1)——String类
## String类
因为String使用更简单一点,所以更推荐使用String,这里也先介绍String
### 基本使用方法
```
String a = "arduino"
```
### 可用函数
charAt()
compareTo()
concat()
c_str()
endsWith()
equals()
equalsIgnoreCase()
getBytes()
indexOf()
lastIndexOf()
length()
remove()
replace()
reserve()
setCharAt()
startsWith()
substring()
toCharArray()
toInt()
toFloat()
toLowerCase()
toUpperCase()
trim()
页:
[1]