How use gsub in a Ruby code

Hi friend,

I'm trying use gsub in ruby code. But my syntax didn't work.

matches[ x ] = "GenericLog\tGenericDetail\t4\t2019-08-23 01:23:05"

Code:

     matches.each_index{ |x|
            x.gsub(/(GenericLog).*\\t4\\t/, "" )
    }

Can Someone help?

I solved with:

 matches.each_index{ |x|
        matches[x] = matches[x].gsub(/GenericLogGenericLog\\tGenericDetail\\t4\\t/,"")
        }

thanks.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.