I'm struggling to get a regexp (in Ruby) that will provide the following
"one, two" -> "one"
"one, two, three" -> "one"
"one two three" -> "one two three"
I want to match any characters up until the first comma in a string. If there are no commas I want the entire string to be matched. My best effort so far is
/.*(?=,)?/
This produces the following output from the above examples
"one, two" -> "one"
"one, two, three" -> "one, two"
"one two three" -> "one two three"
Close but no cigar. Can anyone help?
I'm wondering if it can't be simpler:
/([^,]+)/
Would matching only non commas from the beginning work? e.g.:
/^[^,]+/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With