Javascript Regex multiple group matches in pattern
I have a question for a Javascript regex ninja: How could I simplify my variable creation from a string using regex grouping? I currently have it working without using any grouping, but I would love to see a better way!
The st开发者_如何学编程ring is:
var url = 'resources/css/main.css?detect=#information{width:300px;}';
The code that works is:
var styleStr = /[^=]+$/.exec(url).toString();
var id = /[^\#][^\{]+/.exec(styleStr).toString();
var property = /[^\{]+/.exec(/[^\#\w][^\:]+/.exec(styleStr)).toString();
var value = /[^\:]+/.exec(/[^\#\w\{][^\:]+[^\;\}]/.exec(styleStr)).toString();
This gives:
alert(id) //information
alert(property) //width
alert(value) //300px
Any takers?
Sure..
var url = 'resources/css/main.css?detect=#information{width:300px;}';
var matches = url.match(/#([^{]+){([^:]+):([^;]+)/);
var id = matches[1];
var property = matches[2];
var value = matches[3];
#(?<type>.+){(?<property>.*?):(?<value>.*?);
Group "type": information 31 11
Group "property": width 43 5
Group "value": 300px
[Jay loves regexbuddy]
JS:
result = subject.match(/#([\s\S]+)\{([\s\S]*?):([\s\S]*?);/ig);
精彩评论