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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T17:49:13+00:00 2026-06-12T17:49:13+00:00

Well here is what I’m trying to do. I want to convert a array

  • 0

Well here is what I’m trying to do.
I want to convert a array which contains CSS rules like so:

[

".divd { bottom: 0px; height: 500px; }"

, 

".divk { font-size: 14px; }"

]

I want to turn this into:

cssarray['divd'] =  {
        bottom: "0px",
        height: "500px",
    };

Here is what i’ve done so far:

    var splitSelector= css.split("{");
    var splitProperty = split[1].split(";");
    var v =[];
    for(i in splitProperty ){
        v = $.extend(v,splitProperty[i].split(":"));
    }

I have tried to get this work with lot’s of split statements but im out of luck.

  • 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-12T17:49:14+00:00Added an answer on June 12, 2026 at 5:49 pm

    See this fiddle: http://jsfiddle.net/YrQ7B/3/

        var arr = [".divd { bottom: 0px; height: 500px; }", 
    "#divk { font-size: 14px; }"];
    
    var output = {};
    for(var k in arr)
    {
        var value = arr[k], key;
        // Get key
        value.replace(/(\.|#)([a-z\s]+){/gi, function($1, $2, $3){
              key = $3;
        });
        // Make object
        output[key] = {};
    
        // Replace First part
        value = value.replace(/\.([a-z\s]+) {/gi, "");
        value = value.replace("}", "");
    
        value.replace(/([a-z\-]+)([^:]+)?:([^0-9a-z]+)?([^;]+)/g, function($1, $2, $3, $4, $5){             
            output[key][$2] = $5;
        });
    }
    
    console.log(output);
    ​
    ​
    

    The log:

    Object
        divd: Object
            bottom: "0px"
            height: "500px"
        divk: Object
            font-size: "14px"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Well here is the API I'm trying to use: http://www.hotelscombined.com/api/LiveRates.asmx?op=HotelSearch Here is the code
I have the $user array that contains data with special characters. It seems like
I have some code like this, well here is the part that is most
Well here is the thing, I have MainForm that call OrderForm.Show(). Now I want
never thought i had issues with nested loops well here Iam: What i want
Extreme Android developer newbie here...well, new to Android development, not development in general. I
Well i am here writing some constraints for a db I am working on
Here is well described how to call member function by pointer: http://www.newty.de/fpt/functor.html But the
The question of composite keys in web2py was answered pretty well by Anthony here
Well i need some help here i don't know how to solve this problem.

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.