这有效:
match = string.match(/\A>.*\(12345\)/)
puts match
如何使用变量执行相同的操作?像这样:
number = 12345
match = string.match("/\A>.*\(#{number}\)/")
puts match
答案 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>