Skip to content

Instantly share code, notes, and snippets.

@sharmaabhinav
Created March 16, 2018 05:24
Show Gist options
  • Save sharmaabhinav/d31d8ba8913886e9582deb8c819e0769 to your computer and use it in GitHub Desktop.
Save sharmaabhinav/d31d8ba8913886e9582deb8c819e0769 to your computer and use it in GitHub Desktop.
a = "this is name a good , name is good, name"
arr = ['abhinav', 'kankia', 'sid']
count = 0
a.gsub!("name") do |val|
val = arr[count]
count += 1
val
end
print a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment