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

  • Home
  • SEARCH
  • 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 3609710
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T21:39:44+00:00 2026-05-18T21:39:44+00:00

If I have the text <page a>The cat ran#$(*#(%)#over(*@#$the(*#% and am using a scanner

  • 0

If I have the text

<page a>The cat ran#$(*#(%)#over(*@#$the(*#%

and am using a scanner and the useDelimiter method, what regex would allow me to extract:

<page a>
The
cat
ran
over
the

So far I have tried:

s.useDelimiter("[^a-zA-Z]|^(<.*>$)");

but that does not leave angle brackets intact, it takes them out (obviously as it matches the a-zA-Z instead.

  • 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-18T21:39:44+00:00Added an answer on May 18, 2026 at 9:39 pm

    The problem is not one of delimiters, so much as it is one of token recognition. Your tokens are:

    • <page a>
    • The
    • cat
    • ran
    • over
    • the

    Encoding the “<” characters anywhere in the set of delimiters pretty much ensures that they won’t be in the returned tokens. If you know that the <page a> occurs at the beginning of the string somewhere (and I realize that might be an invalid assumption), you can do something like this:

    Scanner s = new Scanner(...);
    s.useDelimiter("[^\\w]");
    // Find an angle bracket token, if one is next.
    String token = s.findInLine("<[^.]*>");
    if (token != null)
        // process angle bracket token
    token = s.next(); // get next delimited token
    ...
    

    Obviously, that’s a quick hack (though I did test it). But you could easily extend it, I think.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code that fetches some text from a page using BeautifulSoup soup=
I have a text box on a web page, whose value I want to
I have 6 text boxes on an asp page and one search button. Users
I have two text boxes t1 and t2 in an html page. I'd like
I have some text in a non-English/foreign language in my page, but when I
If I have some text that I want to print out on a page,
I have a page and I want to insert 'Some text' on that page,
I have a page which has a rectangular area with text and icons in
I have a page with .Net grid view with about 12 text fields per
I have an ASP page which displays a text box when it loads. It

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.