2

C++ としてテキスト ファイルを読みたい

ここにテキストファイルの例があります

(item(name 256) (desc 520)(Index 1)(Image "Wea001") (specialty  (aspeed 700)))
(item   (name 257)  (desc 520)           (Index 2)  (Image "Wea002")(specialty(Attack 16 24)))

次のような出力が必要です

name : 256
Desc : 520
Index : 1
Image : Wea001
Specialty > aspeed : 700

Name : 257
Desc : 520
Index : 2
Image : Wea002
Speciality > Attack : 16 24

それは可能ですか?

私は試した :

preg_match_all('/name\s+(.*?)\)\+\(desc\s+(.*?)\)\+\(Index\s+(.*?)\)/', $text, $matches, PREG_SET_ORDER);

foreach ($matches as $match) {
  list (, $name, $desc, $index) = $match;
    echo 'name : '.$name.' <br> Desc : '.$desc.'<br> Index : '.$index.'';
  }

しかし、それは私が望んでいた正しい出力を私に与えませんでした。

ありがとうございました

4

1 に答える 1

2
<?php
    $txt = '(item(name 256) (desc 520)(Index 1)(Image "Wea001") (specialty  (aspeed 700))(item   (name 257)  (desc 520)           (Index 2)  (Image "Wea002")(specialty(Attack 16 24)))';

    preg_match_all('/name\s+(?P<name>\w+).*desc\s+(?P<desc>\d+).*Index\s+(?P<index>\d+).*Image\s+(?P<img>.*)\).*specialty\s*\((?P<speciality>.*)\)\)\)/', $txt, $matches);
  foreach($matches['name'] AS $id => $name){
       echo 'name : '.$name.' <br> Desc : '.$matches['desc'][$id].'<br> Index : '.$matches['index'][$id].'<br> speciality : '.$matches['speciality'][$id].'';
}

常に同様のデータ形式があると仮定します

于 2012-09-11T14:15:03.867 に答える