我有是有弦的表值檢查字符串開始,並在Lua
data_table = {'(?P<smartcache>.+)$', 'css', '123454', '(?P<version>.+)$'}
我想看看是否一個字符串startswith
「(ΔP<」和endswith
「) $'。 我想在輸出一個字符串,它會像
output_table = '/smartcache/css/123454/version'
我面臨的問題,就像我想從(?P<smartcache>.+)$
取'smartcache'
獲取其與模式 傳遞的值。
我嘗試:
out_string_value = (string.match(uri_regex, '[^(?P<].+[)$]')
這裏我收到輸出smartcache>.+)$
但我想smartcache
。
你真棒人:) –