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.'';
}
但它並沒有給我正確的輸出,我想。
謝謝
聖牛是一個討厭的格式。它來自哪裏?你可以改變它嗎? – DaveRandom
Lisp攻擊!這麼多括號! – Tchoupi