2
進出口試圖GSUB使用一組10替換字符串但是,代替於此紅寶石由組1代替和0 我在GSUB替換使用此我如何才能正則表達式紅寶石替換組10使用gsub?
gsub \\10xp
"smnm nmnmn nmnmn dsdsf sffddf sffdfd dfsff fdsdsfd fsdds ssfsff".gsub(/(\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+)/,"\\10xp")
用於更換,並獲得第1組和字符串「0xp 「
我怎麼能解決這個
請幫我
這是在Ruby中的唯一途徑。 [其他正則表達式引擎有處理這些情況的手段](http://www.rexegg.com/regex-capture.html)。 –