gpt4 book ai didi

javascript - 在 Javascript 中对已经分割的字符串使用分割函数

转载 作者:行者123 更新时间:2023-12-02 22:02:48 27 4
gpt4 key购买 nike

我遇到一种情况,我需要拆分已经拆分的字符串。

例如,

String 1= "This,is, my, problem;I, need,a, solution";

现在我需要根据“;”分割第一句话一旦我得到这个字符串,它应该给我 2 个句子

1 "This,is,my,problem"

2 "I,need,a,solution"

而且我需要根据“,”进一步拆分这两个句子。

This

is

my

problem

I

need

a

solution

使用 JavaScript 可以实现这一点吗?当我尝试拆分两个句子时,JavaScript 出现错误。

最佳答案

您需要 .map.split 的组合。

var x = "This,is, my, problem;I, need,a, solution";

var op = x
.split(";") // first split
.map(el => el
.split(",") // second split
.map(el => el.trim())) // to remove the begining and end space
.flat(1); // to flatten the array by 1 level

console.log(op);

关于javascript - 在 Javascript 中对已经分割的字符串使用分割函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59823073/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com