我有字符串,array1
和array2
的兩個不同的陣列,其中,我想找出是否在array1
的元素也array2
存在而不array1
修改元件,但array1
中的值包含冒號:
之後的額外字符。如何檢查是否在數組中的元素在另一個數組存在
array1 = ["unit 1 : Unit 1","unit 2 : Unit 2","unit 3 : Unit 3","test : Test", "system1"]
array2 = ["unit 1","unit 2","unit 3","test"]
我嘗試過使用include?
,但它不起作用。
array1.each do |element|
#see if element exists in array 2
if array2.include? element
#print the name of that element
puts element
end
end
我該如何處理?
請編輯以顯示你的例子所期望的結果。 –