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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T03:40:45+00:00 2026-06-16T03:40:45+00:00

I was trying to parse the style attribute of a simple <font> tag and

  • 0

I was trying to parse the style attribute of a simple <font> tag and convert it back to simple html attributes. For instance, I have this string <font style="font-family:tahoma;font-size:24px;color:#9900CC;"> and I’d like to somehow convert it to <font size="24" color="#9900CC" face="tahoma"> I know this can be done with regex but I have no idea how?

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-06-16T03:40:46+00:00Added an answer on June 16, 2026 at 3:40 am

    So here is the simplest solution I’ve made so far its a dirty solution but it works like a charm:

    static public String convertCSSFonttoHTML(String css)
    {
    
        List<List<String>> allFontTags = regexFindMultiStrings("<font[^>]*(style=['\"][^'\"]+['\"])[^>]*>", css);
        String allAttributes = "";
    
        for(int y=0; y<allFontTags.size(); y++)
        {
            String style = allFontTags.get(y).get(0);
            String size = regexFindString("font-size:([^0-9]+)", style);
            String color = regexFindString("color:([^;]+);", style);
            String face = regexFindString("font-family:([^;]+)", style);
    
            if(!size.isEmpty())
                 allAttributes += "size=\""+size+"\" ";
    
            if(!color.isEmpty())
                 allAttributes += "color=\"" + color + "\" ";
    
            if(!size.isEmpty())
                 allAttributes += "face=\""+face+"\"";
    
    
    
            //do replacements to the first occurance
            css = css.replaceFirst(style, allAttributes);
    
            //empty atts
            allAttributes = "";
        }
    
        //Log.e("Regex", css);
    
    
        return css;
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to parse the following HTML: <li> <b style=font-size: 11px;>News:</b> <ul> <li><a style=font-size:
I have been getting this error when trying to parse HTML with a script
i am trying to parse an HTML document, but bs4 fail to parse attribute
Trying to parse an HTML document and extract some elements (any links to text
Trying to parse Maplines for an airport. Each airport can have X number of
Trying to parse some XML but apparently this is too much for a lazy
Trying to parse an SQL string and pull out the parameters. Ex: select *
Im trying to parse the string located in /proc/stat in a linux filesystem using
I am new to jquery. I am trying to parse xml string using jquery.
I'm trying to parse a simple xml document using a DOM parser in JS,

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.