Skip to content

Instantly share code, notes, and snippets.

@Erinziyi
Last active February 26, 2019 03:42
Show Gist options
  • Select an option

  • Save Erinziyi/b53605c3067b9315198288418e78851a to your computer and use it in GitHub Desktop.

Select an option

Save Erinziyi/b53605c3067b9315198288418e78851a to your computer and use it in GitHub Desktop.
String functions
main() {
String sample = 'aaaa where are ayou now?';
bool res = sample.endsWith('as');
var x = sample.split('a');
print(sample.toUpperCase());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment