PHP nitelik / değerler listesi ayrıştırmak

2 Cevap php

Gibi öznitelik / değer çiftleri bir dize verilen

attr1="some text" attr2 = "some other text" attr3= "some weird !@'#$\"=+ text"

Amacınız bu durumda, o ve çıkışı bir ilişkisel dizi ayrıştırmak için:

array('attr1' => 'some text',
      'attr2' => 'some other text',
      'attr3' => 'some weird !@\'#$\"=+ text')

Eşit işaretleri etrafında tutarsız aralığı, giriş kaçan çift tırnak, ve çıkış kaçan tek alıntı unutmayın.

2 Cevap

Böyle bir şey deneyin:

$text = "attr1=\"some text\" attr2 = \"some other text\" attr3= \"some weird !@'#$\\\"=+ text\"";
echo $text;
preg_match_all('/(\S+)\s*=\s*"((?:\\\\.|[^\\"])*)"/', $text, $matches, PREG_SET_ORDER);
print_r($matches);

üretir:

attr1="some text" attr2 = "some other text" attr3= "some weird !@'#$\"=+ text"

Array
(
    [0] => Array
        (
            [0] => attr1="some text"
            [1] => attr1
            [2] => some text
        )

    [1] => Array
        (
            [0] => attr2 = "some other text"
            [1] => attr2
            [2] => some other text
        )

    [2] => Array
        (
            [0] => attr3= "some weird !@'#$\"=+ text"
            [1] => attr3
            [2] => some weird !@'#$\"=+ text
        )

)

Ve kısa bir açıklama:

(\S+)               // match one or more characters other than white space characters
                    // > and store it in group 1
\s*=\s*             // match a '=' surrounded by zero or more white space characters 
"                   // match a double quote
(                   // open group 2
  (?:\\\\.|[^\\"])* //   match zero or more sub strings that are either a backslash
                    //   > followed by any character, or any character other than a
                    //   > backslash
)                   // close group 2
"                   // match a double quote

EDIT: değeri attr4="something\\" gibi bir ters eğik çizgi sona ererse bu regex başarısız

Ben PHP bilmiyorum, ama regex aslında herhangi bir dilde aynı olacağından, bu ben ActionScript yaptım nasıl:

var text:String = "attr1=\"some text\" attr2 = \"some other text\" attr3= \"some weird !@'#$\\\"=+ text\"";

var regex:RegExp = /\s*(\w+)\s*=\s*(?:"(.*?)(?<!\\)")\s*/g;

var result:Object;
while(result = regex.exec(text))
    trace(result[1] + " is " + result[2]);

Ve ben dışarı aşağıdaki koymak lazım:

attr1 is some text
attr2 is some other text
attr3 is some weird !@'#$\"=+ text