分解字符串并在每个单词后换行
我有一个文本框(我通常这样称呼它: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 />";
只会给我带来无效结果。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要么:
要么:
由于您将其放入文本区域,从外观上看,您需要换行符,而不是 BR 标记。
Either:
or:
Since you're putting it in a textarea, by the look of things, you need newlines, not BR tags.
你说得对,
它将把
st
分割成你正在寻找的子字符串数组。但是,您希望将每个子字符串放在自己的行上,而不是所有子字符串放在一行。因此,您需要在每个子字符串之间放置一个
br
标记,从而将每个子字符串放在自己的行上。You are right in saying that
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 needto place a
br
tag in between each of the substrings and thus put each on its own line.