Dart String子串方法
返回此字符串的子字符串,该字符串从startIndex(包括)延伸到endIndex,exclusive。
语法
substring(int startIndex, [ int endIndex ])
参数
- startIndex - 从(包含)开始提取的索引。
- endIndex - 停止提取的索引(不包括)。
注 - 索引基于零,即第一个字符的索引为0,依此类推。
返回值类型
返回一个字符串。
范例
void main() { String str1 = "Hello World"; print("New String: ${str1.substring(6)}"); // from index 6 to the last index print("New String: ${str1.substring(2,6)}"); // from index 2 to the 6th index }
它将产生以下 输出:
New String: World New String: llo
返回对象的字符串表示形式。语法val.toString()返回值类型返回一个字符串。范例void main() { int n = 12; var res = n.toString(); pri ...