[問題] 請問字串擷取的方式

看板RegExp (正規表示式 Regular Expression)作者時間17年前 (2007/11/21 02:21), 編輯推噓3(302)
留言5則, 3人參與, 最新討論串1/1
因為是用php開發,想請問一下 比方說有一個字串 $string = "this is an apple!" 而我想要取出字串分別是this,is,an,apple 那他的reg exp應該怎樣表示呢? 實在想不太出來該怎樣去做,麻煩各位了@@ -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.115.156.75

11/21 03:10, , 1F
連regexp都不用: http://tw.php.net/explode
11/21 03:10, 1F

11/21 03:16, , 2F
$string = "this is an apple!";
11/21 03:16, 2F

11/21 03:16, , 3F
$pattern = "([a-zA-Z]+)";
11/21 03:16, 3F

11/21 03:17, , 4F
preg_match_all($pattern,$string,$a);
11/21 03:17, 4F

11/21 04:07, , 5F
感謝各位的回答 @@"
11/21 04:07, 5F
文章代碼(AID): #17GoMjnM (RegExp)
文章代碼(AID): #17GoMjnM (RegExp)