分解字符串并在每个单词后换行

发布于 2025-01-05 05:03:32 字数 348 浏览 0 评论 0 原文

我有一个文本框(我通常这样称呼它:document.forms[0].text.value) 具有这种价值:

a,b,c,d,e,f,g,etc

我想做的是在上面字符串中的每个逗号上“爆炸”(如 php 函数),然后将其放回到文本框中,所以我最终得到以下结果:

a
b
c
d
e
f
g
etc

做一点谷歌搜索我发现我需要使用 split() 但执行类似以下操作

st.split(",") + "<br />";

只会给我带来无效结果。

I have a textbox (I usually call it like this: document.forms[0].text.value)
that has this kind of value:

a,b,c,d,e,f,g,etc

what I want to do is "explode" (like the php function) on each of the commas in the above string, then put it back into the textbox so I end up with this:

a
b
c
d
e
f
g
etc

Doing a little Googling I see I will need to use split() but doing something like:

st.split(",") + "<br />";

is giving me nothing but invalid results.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

箹锭⒈辈孓 2025-01-12 05:03:32

要么:

st.split(",").join("\n");

要么:

st.replace(/,/g,"\n");

由于您将其放入文本区域,从外观上看,您需要换行符,而不是 BR 标记。

Either:

st.split(",").join("\n");

or:

st.replace(/,/g,"\n");

Since you're putting it in a textarea, by the look of things, you need newlines, not BR tags.

顾挽 2025-01-12 05:03:32

你说得对,

st.split(",")

它将把 st 分割成你正在寻找的子字符串数组。但是,您希望将每个子字符串放在自己的行上,而不是所有子字符串放在一行。因此,您需要

st.split(",").join("<br />")

在每个子字符串之间放置一个 br 标记,从而将每个子字符串放在自己的行上。

You are right in saying that

st.split(",")

will split st into an array of the substrings you are looking for. However, you want to put each substring onto its own line, not one line for all the substrings. So, you need

st.split(",").join("<br />")

to place a br tag in between each of the substrings and thus put each on its own line.

再可℃爱ぅ一点好了 2025-01-12 05:03:32
    var string = "University of USA";
    string =  string.split('').join('<br>');
    var string = "University of USA";
    string =  string.split('').join('<br>');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文