我正在努力获得一个
regexp(在
Ruby中),它将提供以下
内容
"one,two" -> "one"
"one,two,three" -> "one"
"one two three" -> "one two three"
我希望匹配任何字符直到字符串中的第一个逗号.如果没有逗号,我希望匹配整个字符串.到目前为止,我的最大努力是
/.*(?=,)?/
这从以上示例产生以下输出
"one,three" -> "one,two"
"one two three" -> "one two three"
关闭但没有雪茄.有人可以帮忙吗?