在PHP 中使用多個分隔符號分隔字串
在PHP 中,透過多個分隔符號分割字串是一項常見任務,需要客製化方法。讓我們考慮一個例子:
<code class="php">$string = "something here ; and there, oh,that's all!"; // Split the string by ";" and "," delimiters</code>
我們如何實現這個目標?解決方案在於利用 PHP 的 preg_split() 函數,該函數允許基於正規表示式進行分割。
<code class="php">$pattern = '/[;,]/'; echo '<pre class="brush:php;toolbar:false">', print_r(preg_split($pattern, $string), 1), '';
在此範例中,正規表示式/[;,]/ 符合任何出現的分號( ;) 或逗號(,):
因此,該函數會拆分輸入字串分成多行:
something here and there oh that's all!
此技術提供了一種在PHP 中透過多個分隔符號分割字串的通用解決方案。
以上是如何在 PHP 中使用多個分隔符號分割字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!