Search:

Type: Posts; User: Lilac

Search: Search took 0.11 seconds.

  1. Re: Scanning and displaying every word from a website source code Java

    Thanks for trying to help me out on this, I appreciate your time
  2. Re: Scanning and displaying every word from a website source code Java

    That sounds like it could work, say if I the Scanner used the .next() function, it would go check it and if it finds <a href=" it then finds when it closes at "> and prints the link thats inside
  3. Re: Scanning and displaying every word from a website source code Java

    Yes I believe that's along the right lines, using the scanner class: I understand that not many people use regular expressions which is why I'm finding it so hard to get help
  4. Re: Scanning and displaying every word from a website source code Java

    I'm really new to programming so this isn't easy for me to explain or understand, but as the scanner goes through the source code, if it see's [<a href="] then it scans that until it finds [">] and...
  5. Re: Scanning and displaying every word from a website source code Java

    Say the website was something like this:
    <html>
    <body>
    <a href="www.google.com">GoogleLink</a>
    </body>
    </html>
    How would I use a delimiter to detect the start of the link (<a href=") and the...
  6. Re: Scanning and displaying every word from a website source code Java

    Basically I will get given a web page and my program should be able to extract all the hyperlinks from that page
    They said to use delimiters to extract the links, however I assume I need to extract...
  7. Scanning and displaying every word from a website source code Java

    I'm a new Computer Science student and I have been given a task to scan the contents of a websites source code, and use delimiters to extract all hyperlinks from the site and display them. We havent...
Results 1 to 7 of 7