I try to calculate how many letter "a" i have in the sentence: "Hello Jordania".
I find the function contains. I using it like this:
var phrase = "Hello Jordania;
var comptenbrdea = phrase.contains('a');
print(comptenbrdea);
I get "True" as response. Normal you will say, I know, but I dont find the right function to calculate how many time i get an a. I can maybe do something with a loop if I can check every single character? ... I'm lost on http://www.dartlang.org/search.html?cx=011220921317074318178%3Ai4mscbaxtru&ie=UTF-8&hl=en&q=string_scanner ... Can some one help me ?