Added replace_substring method

master
E. Almqvist 4 years ago
parent feb95a2000
commit f352cb6a82
  1. 22
      rep2/rep2.rb

@ -39,17 +39,17 @@ def distribution_calc(path)
end end
# 4 # 4
def replace_substring(str, rep, sub, i) def replace_substring(str, rep, sub, i=0, rep_len=nil)
newstr = str.dup() rep_len = rep_len || rep.length
rep_len = rep.length if( i >= str.length ) then
if( newstr[i...i+rep_len] == rep ) then return str
newstr[i...i+rep_len] = sub else
i += rep_len if( str[i...i+rep_len] == rep ) then
str[i...i+rep_len] = sub
i += rep_len - 1
end end
return replace_substring(str, rep, sub, i+1, rep_len)
rec_loop(0, newstr) end
return newstr
end end

Loading…
Cancel
Save