我做一個句子拆分字爲如下:
如:我如何拆分字符串文字和符號的組合陣列
This is a test from php, python, asp and also from other languages. Alash! i cannot get my output as followings.
結果:
array(
[0]=>"This",
[1]=>"is",
[2]=>"a",
[3]=>"test",
[4]=>"from",
[5]=>"php",
[6]=>",",
[7]=>"python",
[8]=>",",
[9]=>"asp",
[10]=>"and",
[11]=>"also",
[12]=>"from",
[13]=>"other",
[14]=>"languages",
[15]=>".",
[16]=>"Alash",
[17]=>"!",
[18]=>"I",
[19]=>"cannot",
[20]=>"get",
...
)
什麼可以成爲我的選擇在PHP中呢?
這東西GR8 ......會喜歡跳過空格太 – KoolKabin
更好地使用'/ \ s +試試這個方法| \ B(?= \ W)/',然後你不要結束所有那些空的字符串。 – mhyfritz
gr8 one ... thnx它的工作 – KoolKabin