Ruby regex - gsub only captured group

后端 未结 6 805
夕颜
夕颜 2021-01-03 22:47

I\'m not quite sure I understand how non-capturing groups work. I am looking for a regex to produce this result: 5.214. I thought the regex below would work, bu

6条回答
  •  一向
    一向 (楼主)
    2021-01-03 23:00

    I know nothing about ruby.

    But from what i see in the tutorial

    gsub mean replace, the pattern should be /(?<=\d+),(?=\d+)/ just replace the comma with dot or, use capture /(\d+),(\d+)/ replace the string with "\1.\2"?

提交回复
热议问题