I have string like below
case1:
str = "type=\"text/xsl\" href=\"http://skdjf.sdjhshf/CDA0000=.xsl\""
case2:
str = "href=\"http://skdjf.sdjhshf/CDA0000=.xsl\" type=\"text/xsl\""
I need to extract the values like
type -> text/xsl
href -> http://skdjf.sdjhshf/CDA0000=.xsl
Here is my regular expression that fails.
str.match(/type="(.*)"/)[1]
#this works in second case
=>"text/xsl"
str.match(/http="(.*)"/)[1]
#this works in first case
=>"http://skdjf.sdjhshf/CDA0000=.xsl"
In failure cases the whole string is matched.
Any idea?