Example: ruby replace certain character # Ruby language str_old = "first-name last-name" str_old.sub("-", "_") # Replace first "-" with "_" str_old.gsub("-" ...
確定! 回上一頁