Dart SDK
dart:core
String
operator +
method
operator +
String
Properties
length
hashCode
isEmpty
isNotEmpty
codeUnits
runes
Constructors
fromCharCodes
fromCharCode
fromEnvironment
Operators
operator []
operator ==
operator +
operator *
Methods
codeUnitAt
endsWith
startsWith
indexOf
lastIndexOf
substring
trim
trimLeft
trimRight
padLeft
padRight
contains
replaceFirst
replaceFirstMapped
replaceAll
replaceAllMapped
replaceRange
split
splitMapJoin
toLowerCase
toUpperCase
matchAsPrefix
allMatches
compareTo
String
operator +
(
String
other
)
Creates a new string by concatenating this string with other.
'dart' + 'lang'; // 'dartlang'