Hi,
I need a Regex to use within the search query to pick up individual values separated by comma's within a set of speech marks. The number of values varies, but is started and broken by those speech marks.
For example within the _raw I have;
db_values="value1, value2, value3, value4"
I tried the following but not sure how I separate out value 1 and value 2 etc into separate entities;
rex field=db_value"(?P\w+\_\w+)\-"
Thanks.
↧