Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6834193
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:04:52+00:00 2026-05-26T23:04:52+00:00

i am using java with jsoup to parse a website, trouble is , alot

  • 0

i am using java with jsoup to parse a website, trouble is , alot of the information i needed isnt surrounded by tags.

for example , each <p> below has telephone number/s for 2 different people. one person has a telephone while the other does not.

<p class="contact-info">Tel: <strong> 059-9162997</strong> | Mob: <strong>087-2280039</strong></p>
 <p class="contact-info">Mob: <strong>086 7726712</strong></p>

How could i parse/ pattern match this information to retrieve

person 1 —–> 059-9162997, 087-2280039

person 2 —–> 086 7726712

Also how would i retrieve the information for this

<p class="contact-info">Address: <strong>Suite 26, Unit 1, North Park, North Road,Dublin 11, Dublin</strong> <br />Email: <a href="mailto:info@swillydrive.ie">info@swillydrive.ie</a><br />Website: <a href="http://www.swillydrive.ie">http://www.swillydrive.ie</a></p>

where

Address —–>Suite 26, Unit 1, North Park, North Road,Dublin 11, Dublin
email ——-> info@swillydrive.ie
website ——>http://www.swillydrive.ie

thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T23:04:53+00:00Added an answer on May 26, 2026 at 11:04 pm

    You can use jsoup to select some data depending on what you need, as described here.

    In your case, you need to select all p tag with the contact-info class, and then the strong tag in it. The syntax allows you do write it like this:

    p.contact-info strong
    

    Which, in Java, gives:

    Elements elements = document.select("p.contact-info strong");
    for (Element element : elements) {
        String phoneNumber = element.text();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

how can i parse only text from a web page using jsoup using java?
hi all i am using jsoup in a java-ee app to parse html i
I'm using Java and Jsoup to parse HTML pages and I want to get
I am using JSOUP (java tool for XML files) and I am using following
Using java is there open source code to open a website in internet explorer
I'm trying to parse some html using jsoup (1.3.3) in my android activity. When
I am using Java's Scanner to parse some text. Say I have set as
Using Java, how can I test that a URL is contactable, and returns a
Using java, minus the exception handling, it is as simple as FileOutputStream ostream =
Using java I am trying to develop a method using recursion to analyze a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.