What is the difference between gsub and sub methods for Ruby Strings

后端 未结 4 760
-上瘾入骨i
-上瘾入骨i 2021-01-30 05:57

I have been perusing the documentation for String today, and I saw the :sub method, which I\'d never noticed before. I\'ve been using :gsub

4条回答
  •  闹比i
    闹比i (楼主)
    2021-01-30 06:43

    The difference is that sub only replaces the first occurrence of the pattern specified, whereas gsub does it for all occurrences (that is, it replaces globally).

提交回复
热议问题