質問

I have an array list of email address and i want to delete eveything after the ";"

i tried chomp. but that didnt seem to work.

How would i loop through the array and remove everything after the ";" in my view.

役に立ちましたか?

解決

Try:

["aaaa;bbb"].map { |e| e.gsub(/;.*/, ';') }

From documentation: gsub returns a copy of str with the all occurrences of pattern substituted for the second argument.

So this regexp will match ; and any character after, so you have to pass ; as second argument.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top