本文介绍了在javascript中拆分字符串一次?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何只拆分一个字符串一次,即使 1|Ceci n'est pas une pipe: |Oui 解析为:["1", "Ceci n'est pas une pipe: | Oui"]?

How can I split a string only once, i.e. make 1|Ceci n'est pas une pipe: | Oui parse to: ["1", "Ceci n'est pas une pipe: | Oui"]?

拆分的限制似乎没有帮助...

The limit in split doesn't seem to help...

推荐答案

这不是一个漂亮的方法,但工作效率不错:

This isn't a pretty approach, but works with decent efficiency:

var string = "1|Ceci n'est pas une pipe: | Oui";
var components = string.split('|');
alert([components.shift(), components.join('|')]​);​​​​​

这是它的快速演示

这篇关于在javascript中拆分字符串一次?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 21:31