Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 22, 2022 21:01
Show Gist options
  • Save Deleplace/f777f8cc64021afad2706e48bd45791a to your computer and use it in GitHub Desktop.
Save Deleplace/f777f8cc64021afad2706e48bd45791a to your computer and use it in GitHub Desktop.
Replace value in list
void main() {
var x = [
"a",
"",
"foo",
"bar",
"foo",
];
print("Before:\t x is ${x}");
for (var i = 0; i < x.length; i++) {
if (x[i] == 'foo') x[i] = 'bar';
}
print("After:\t x is ${x}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment