Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

regex - How to use ruby regexp to substitute string with a "callback function"-like manipulation

I have the samples lines, and I want to substitute the leading #s with =s. (The first two lines) But instring.gsub!(/^#+w/, ""), I can not get the number of # which I want to substitute.

In javascript, I could use a callback function with the replace method, but how could I archive this Ruby?

##Command-line Tool
###Installment
This is a '#'.

The expected result:

==Command-line Tool
===Installment
This is a '#'.
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

a callback block function to the gsub method, probably. I am not sure what you had in mind but could be something like

s.gsub(/^(#+)w+/) {|m| m.gsub("#", "=") }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...