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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T23:00:07+00:00 2026-06-16T23:00:07+00:00

Matcher matcher = Pattern.compile(\\bwidth\\s*:\\s*(\\d+)px|\\bbackground\\s*:\\s*#([0-9A-Fa-f]+)).matcher(myString); if (matcher.find()) { System.out.println(matcher.group(2)); } Example data: myString = width:17px;background:#555;float:left;

  • 0
Matcher matcher = Pattern.compile("\\bwidth\\s*:\\s*(\\d+)px|\\bbackground\\s*:\\s*#([0-9A-Fa-f]+)").matcher(myString);
if (matcher.find()) {
    System.out.println(matcher.group(2));
}

Example data:
myString = width:17px;background:#555;float:left; will produce null.
What I wanted:

matcher.group(1) = 17
matcher.group(2) = 555

I’ve just started using regex on Java, any help?

  • 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-16T23:00:09+00:00Added an answer on June 16, 2026 at 11:00 pm

    I would suggest to split things a bit up.

    Instead of building one large regex (maybe you want to add more rules into the String?) you should split up the string in multiple sections:

    String myString = "width:17px;background:#555;float:left;";
    String[] sections = myString.split(";"); // split string in multiple sections
    for (String section : sections) {
    
      // check if this section contains a width definition
      if (section.matches("width\\s*:\\s*(\\d+)px.*")) {
        System.out.println("width: " + section.split(":")[1].trim());
      }
    
      // check if this section contains a background definition
      if (section.matches("background\\s*:\\s*#[0-9A-Fa-f]+.*")) {
        System.out.println("background: " + section.split(":")[1].trim());
      }
    
      ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example: Pattern pattern = Pattern.compile(a(.*)b); Matcher matcher = pattern.matcher(a19203b); matcher.find(); System.out.println(matcher.group()); This prints
Pattern pattern = Pattern.compile(a?); Matcher matcher = pattern.matcher(a); while(matcher.find()){ System.out.println(matcher.start()+[+matcher.group()+]+matcher.end()); } Output : 0[a]1
My code : Pattern pattern = Pattern.compile(a?); Matcher matcher = pattern.matcher(ababa); while(matcher.find()){ System.out.println(matcher.start()+[+matcher.group()+]+matcher.end()); }
Pattern pattern = Pattern.compile(<a>([a-zA-Z]+)</a>) Matcher matcher = pattern.matcher(<a>Text</a>); matcher.find() String str = matcher.group(); I
public static String convert(String str) { if (str.equals(# )) System.out.println( ); Pattern pattern =
String output = ; pattern = Pattern.compile(>Part\s.); matcher = pattern.matcher(docToProcess); while (matcher.find()) { match
File file = new File(file-type-string-i-want-2000-01-01-01-01-01.conf.gz); Matcher matcher = pattern.compile(\\-(.*)\\-\\d{4})).matcher(fileName); StringBuilder sb = new StringBuilder();
I have a function that uses Pattern#compile and a Matcher to search a list
In Java I am using Pattern and Matcher to find all instances of .A
Pattern pattern = Pattern.compile((\\S+)\\s+(.+?)\\s+(\\S+)); Matcher matcher = pattern.matcher(IA HEART RATE 184); So my question

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.