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 8955223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:30:07+00:00 2026-06-15T14:30:07+00:00

I need some help to extract multiple substrings from a string. An example of

  • 0

I need some help to extract multiple substrings from a string. An example of a string is as given below:

String str = "What is <Mytag a exp 5 exp 3> written as a single power of <i>a</i> <Mytag yx4> and the double power of <b>x+y</b> <Mytag 3xy4>";

I am trying to get substrings Between “<Mytag” and “>”

so my desire output will be

1) a exp 5 exp 3
2) yx4

3) 3xy4

I have tried with Scanner and substring everything I getting first string successfully but the problem with getting second and third occurrence.

in substring methods I am successfully getting index of all tages “<Mytag” but not able to get correct index of “>” because it comes with Bold and italic also.

  • 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-06-15T14:30:08+00:00Added an answer on June 15, 2026 at 2:30 pm

    As Rohit Jain said, with regular expressions. Here is functional code:

    // import java.io.Console;
    import java.util.regex.Pattern;
    import java.util.regex.Matcher;
    
    public class RegexTestHarness {
    
      public static void main(String[] args){
        // Console console = System.console();  // Not needed
    
        Pattern pattern = Pattern.compile("<Mytag([^>]*)>");
    
        String myString = "What is <Mytag a exp 5 exp 3> written as a single power of <i>a</i> <Mytag yx4> and the double power of <b>x+y</b> <Mytag 3xy4>";
        Matcher matcher = pattern.matcher(myString);
    
        while (matcher.find()) {
          // Rohit Jain observation
          System.out.println(matcher.group(1));
        }
    
      }
    }
    

    Source: Java Regex tutorial.

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

Sidebar

Related Questions

I am relatively new to Java and I need some help to extract multiple
I need some help with twitter hashtag, I need to extract a certain hashtag
Need some help from javascript gurus. I have one page where http://www.google.com/finance/converter is embedded
Please help me to write a SQL query to extract unique orders from below
I lack experience with regex and I need some help. I need to extract
I am trying to extract a substring. I need some help with doing it
I grabbed some information from an RSS feed in XML. I need some help
Looking for some help with this perl regex. I need to extract (3) items
I am looking for some help in recognizing pattern from a string that is
I’m trying to develop a SQL query to help me extract some data from

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.