Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 22, 2022 20:29
Show Gist options
  • Save Deleplace/54a942acc4fc4c1f020ebff3b7c5b540 to your computer and use it in GitHub Desktop.
Save Deleplace/54a942acc4fc4c1f020ebff3b7c5b540 to your computer and use it in GitHub Desktop.
Case-insensitive string contains
void main() {
var s = "Let's dance the macarena";
{
var word = "Dance";
bool ok = s.toUpperCase().contains(word.toUpperCase());
print(ok);
}
{
var word = "dance";
bool ok = s.toUpperCase().contains(word.toUpperCase());
print(ok);
}
{
var word = "Duck";
bool ok = s.toUpperCase().contains(word.toUpperCase());
print(ok);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment