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中文网其他相关文章!