import java.util.HashMap;
public class CountWordInString {
public static void main(String[] args) {
CountWordInString f = new CountWordInString();
f.countWordInString();
}
public void countWordInString() {
String str = "i am am ankit ankit ankit vijay vijay vijay";
String[] split = str.split(" ");
HashMap<String, Integer> map = new HashMap<String, Integer>();
for (int i = 0; i < split.length; i++) {
if (map.containsKey(split[i])) {
int count = map.get(split[i]);
map.put(split[i], count + 1);
}
else {
map.put(split[i], 1);
}
}
System.out.println(map);
}
}
Output
----------------
{ankit=3, i=1, am=2, vijay=3}
public class CountWordInString {
public static void main(String[] args) {
CountWordInString f = new CountWordInString();
f.countWordInString();
}
public void countWordInString() {
String str = "i am am ankit ankit ankit vijay vijay vijay";
String[] split = str.split(" ");
HashMap<String, Integer> map = new HashMap<String, Integer>();
for (int i = 0; i < split.length; i++) {
if (map.containsKey(split[i])) {
int count = map.get(split[i]);
map.put(split[i], count + 1);
}
else {
map.put(split[i], 1);
}
}
System.out.println(map);
}
}
Output
----------------
{ankit=3, i=1, am=2, vijay=3}
3 Comments
Hello, you used to write fantastic, but the last few posts have been kinda boring… I miss your tremendous writings. Past few posts are just a bit out of track! come on! design firms los angeles
ReplyDeleteAw, it was a very good post. In concept I have to devote writing like this moreover – taking time and actual effort to make a great article… but what things can I say… I procrastinate alot through no means seem to get something carried out. los angeles web design
ReplyDeletePretty nice post. I simply stumbled upon your weblog and wanted to say that I have really enjoyed surfing around your blog posts. In any case I’ll be subscribing on your rss feed and I hope you write again soon! branding firms los angeles
ReplyDelete