Class: FilterRename::Filters::CopyTo
Class Method Summary
collapse
Instance Method Summary
collapse
#filter
#current_target, #filter, #get_config, #get_string, #get_words, #initialize, #match?, #set_config, #set_string, #wrap_regex
Class Method Details
.hint ⇒ Object
226
|
# File 'lib/filter_rename/filters.rb', line 226
def self.hint; 'Copy the text selected by REGEX to TARGET or TARGET_#'; end
|
.params ⇒ Object
227
|
# File 'lib/filter_rename/filters.rb', line 227
def self.params; 'REGEX,TARGET'; end
|
Instance Method Details
#filtered_regexp(matches, params) ⇒ Object
229
230
231
232
233
234
235
236
|
# File 'lib/filter_rename/filters.rb', line 229
def filtered_regexp(matches, params)
if matches.length > 2
matches[1..-1].each_with_index { |x, i| set_string(x, "#{params[1]}_#{i.next}") }
else
set_string(matches[1], params[1])
end
matches[0]
end
|