Skip to main content
The 2025 Developer Survey results are in. Explore insights into technology and tools, careers, community and more. View results.

All Questions

Tagged with
Filter by
Sorted by
Tagged with
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. ...
user1950349's user avatar
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 ...
ary's user avatar
  • 55
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 ...
ary's user avatar
  • 55
6 votes
1 answer
265 views

Parsing data coming from a URL

I need to parse the data coming from a URL: ...
david's user avatar
  • 1,997