0 RegExMatchValue filter not working as expected 1 Chris Bush posted 5 Years Ago I have the following Lava executing in a template: {% assign message = "test-this 12345" %} {% assign test_result = message | RegExMatch:'\d+' %} {% assign matched_result = message | RegExMatchValue:'\d+' %} <!-- Regex id test: {{ test_result }} .. {{ matched_result }}-->With the following output following evaluation: <!-- Regex id test: true .. test-this 12345-->Am I using this filter incorrectly? According to the filter documentation i should expect the matched_result to be 12345, rather than the entire string.Thanks(this is Rock v8 btw)