如何使用第一个逗号将字符串拆分为段落?

发布于 2024-11-18 19:48:21 字数 215 浏览 1 评论 0原文

我有字符串:@address =“10 Madison Avenue, New York, NY - (212) 538-1884” 像这样分割它的最好方法是什么?

<p>10 Madison Avenue,</p>
<p>New York, NY - (212) 538-1884</p>

I have string: @address = "10 Madison Avenue, New York, NY - (212) 538-1884"
What's the best way to split it like this?

<p>10 Madison Avenue,</p>
<p>New York, NY - (212) 538-1884</p>

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

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

发布评论

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

评论(4

怪我太投入 2024-11-25 19:48:21

String#split 有第二个参数,即结果数组中返回的最大字段数:
http://ruby-doc.org/core/classes/String.html#M001165

< code>@address.split(",", 2) 将返回一个包含两个字符串的数组,在第一次出现“,”时进行拆分。

其余部分只是使用插值构建字符串,或者如果您想让它更通用,例如 Array#map#join 的组合

@address.split(",", 2).map {|split| "<p>#{split}</p>" }.join("\n")

String#split has a second argument, the maximum number of fields returned in the result array:
http://ruby-doc.org/core/classes/String.html#M001165

@address.split(",", 2) will return an array with two strings, split at the first occurrence of ",".

the rest of it is simply building the string using interpolation or if you want to have it more generic, a combination of Array#map and #join for example

@address.split(",", 2).map {|split| "<p>#{split}</p>" }.join("\n")
情栀口红 2024-11-25 19:48:21
break_at = @address.index(",") + 1
result = "<p>#{@address[0, break_at]}</p><p>#{@address[break_at..-1].strip}</p>"
break_at = @address.index(",") + 1
result = "<p>#{@address[0, break_at]}</p><p>#{@address[break_at..-1].strip}</p>"
苯莒 2024-11-25 19:48:21

相当:

break_at = @address.index(", ")
result = "<p>#{@address[0, break_at+1]}</p><p>#{@address[break_at+1..-1]}</p>"

rather:

break_at = @address.index(", ")
result = "<p>#{@address[0, break_at+1]}</p><p>#{@address[break_at+1..-1]}</p>"
星光不落少年眉 2024-11-25 19:48:21

即使 @address.split(",",2) 是正确的。
splitpartitionregex 解决方案运行基准测试,例如 @adress.match(/^([^,]+ ),\s*(.+)/) 表明分区比split 好一些。

在 2.6 GHz Intel Core i5、16 GB RAM 计算机上运行 100_000
<代码>
用户系统总真实数
分区 0.690000 0.000000 0.690000 ( 0.697015)
正则表达式 1.910000 0.000000 1.910000 ( 1.908033)
分割 0.780000 0.010000 0.790000 ( 0.788240)

Even though @address.split(",",2) is correct.
Running a benchmark for split, partition and a regex solution such as @adress.match(/^([^,]+),\s*(.+)/) showed that partition is a bit better than split.

On a 2,6 GHz Intel Core i5, 16 GB RAM computer and 100_000 runs:

user system total real
partition 0.690000 0.000000 0.690000 ( 0.697015)
regex 1.910000 0.000000 1.910000 ( 1.908033)
split 0.780000 0.010000 0.790000 ( 0.788240)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文