文字列から一連のテキストをグループ化し、その配列を作成しようとしています。
文字列は次のようなものです。
<em>string</em> and the <em>test</em> here.
tableBegin rowNumber:2, columnNumber:2 11 22 33 44 tableEnd
<em>end</em> text here
次の結果のような配列を取得することを望んでいました
array (0 => '<em>string</em> and the <em>test</em> here.',
1=>'rowNumber:5',
2=>'columnNumber:3',
3=>'11',
4=>'22',
5=>'33',
6=>'44'
7=>'<em>end</em> text here')
11,22,33,44
ユーザーが入力するtable
セル データです。それらをユニークにしたいのですindex
が、残りのテキストを一緒に保ちます。
tableBegin
データのtableEnd
チェックだけですtable cell
ヘルプやヒントはありますか?どうもありがとう!