我有如下字符串
case1:
str = "type=\"text/xsl\" href=\"http://skdjf.sdjhshf/CDA0000=.xsl\""
case2:
str = "href=\"http://skdjf.sdjhshf/CDA0000=.xsl\" type=\"text/xsl\""
我需要提取像
type -> text/xsl
href -> http://skdjf.sdjhshf/CDA0000=.xsl
这是我失败的正则表达式。
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"
在失败的情况下,整个字符串都是匹配的。
任何的想法?