All Questions
4 questions
2
votes
2
answers
772
views
Parse a formatted string, which may have duplicate keys, into a map
I have a String which is coming in particular format so I want to parse that string into map. I have a below method which parses String to a Map and it works fine.
...
1
vote
1
answer
631
views
Website Spell Checker in Java - follow-up
After receiving some great feedback on my original program, I tried to implement everything that was shared and I just want to see if there's anything else that I can change to make my program clean ...
4
votes
2
answers
2k
views
Website Spell Checker in Java
I've implemented a program that spell checks a website.
Here is the idea that I have in mind:
Scan all of the words in a web page into a string (using jsoup)
Filter out all of the HTML markup and ...
6
votes
1
answer
265
views
Parsing data coming from a URL
I need to parse the data coming from a URL:
...