0

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.

1
  • can you give us an example of the array? Commented May 16, 2013 at 2:06

1 Answer 1

2

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.

Sign up to request clarification or add additional context in comments.

1 Comment

Worked perfectly. thanks you. I couldn't wrap my head around it.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.