テキスト ファイルの解析に助けが必要です。このテキスト ファイルには、いくつかの html タグが含まれています。私が探しているのは、これらすべてを取り除き、出力を個別の変数に格納するソリューション (PHP または JS、またはその両方) です。
Integration/QA
<http://shopfloor/sfweb/secure/CancelOrders>
Development
<http://shopfloor/sfweb/secure/CancelOrders>
------------------------------------------------------------------------
*HEADER INFO*
*View Object:* 6541997 *BPO:* 0020064484 *Ack Date:* 2012-05-25
*Operation(s):* PS_Queue, PS_BoxAll, JPN_End
------------------------------------------------------------------------
*EXTERNAL ORDER NUMBER REFERENCE*
*SAP Sales Order Number* *Customer P.O. Number* *Legacy Order Number*
0310407774 89FC37763001
------------------------------------------------------------------------
*PRODUCTS FOR THIS WORK OBJECT/OPERATION(S)*
*PL* *Product #* *Qty* *Options* *Serial #*
LN AE241A 1
------------------------------------------------------------------------
*Station Info*
*Start Station:* JPN_End *Location:* Done *Station:*
*Birth Date/Time:* 2012-05-22 08:26:17 SGT *Power Cord:* *Voltage:*
------------------------------------------------------------------------
*MATERIAL LIST FOR THIS WORK OBJECT/OPERATION(S)*
*Part Number* *Qty* *Description* *BB Type* *Material
Location* *Serial Number*
AE241-90001 1 XP Remote Support Service Leaflet BOM PACK
Privacy Statement
基本的に、このコードからいくつかのテキストを削除して php 変数にしたいので、次のように返されます。
$viewobject = "6541997"
$BPO = "0020064484"
$ackdate = "2012-05-25"
$operations = "PS_Queue, PS_BoxAll, JPN_End"
$sapSO = "0310407774"
$legacyON = "89FC37763001"
$pl = "LN"
$product = "AE241A"
$qty = 1;
$startstn = "JPN_end"
$location = "Done"
$bdate = "PS_Queue, PS_BoxAll, JPN_End"
$pn = "AE241-90001"
$qty = 1;
$description =" XP Remote Support Service Leaflet";
など。これは可能ですか?