Javascript 相當於PHP Explode()
在PHP 中,explode() 函數透過指定的分隔符號將字串分成小的字串。 JavaScript 使用 split() 方法提供類似的功能。若要在 JavaScript 中實現等效結果,請考慮以下步驟:
範例:
假設我們有字串「0000000020C90037:TEMP:data」並想要擷取「TEMP:data」。
<code class="javascript">// Load the variable var mystr = '0000000020C90037:TEMP:data'; // Split the string using : as the separator var myarr = mystr.split(':'); // Combine the second and third elements of the array var myvar = myarr[1] + ":" + myarr[2]; // Display the resulting value console.log(myvar); // Output: 'TEMP:data'</code>
此 JavaScript 程式碼有效複製了功能PHP 中的explode()。
以上是如何在JavaScript 中實現與PHP 的explode() 函數等效的函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!