最佳答案
我想通过'='字符分割字符串。但我只想让它在第一时间分裂。我该怎么做?下面是“_'字符”的JavaScript示例,但它对我不起作用 仅在指定字符的第一个实例上拆分字符串
示例:
apple=fruit table price=5
当我尝试使用string.split('=');它给了
[apple],[fruit table price],[5]
但我需要
[apple],[fruit table price=5]
谢谢