你如何在Ruby中使用匹配/正则表达式与变量?

时间:2016-05-31 03:31:25

标签: ruby

这有效:

match = string.match(/\A>.*\(12345\)/)
puts match

如何使用变量执行相同的操作?像这样:

number = 12345
match = string.match("/\A>.*\(#{number}\)/")
puts match

1 个答案:

答案 0 :(得分:2)

正则表达式文字已经接受插值。只是做

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>