starts with regex code example
Example 1: regex all starting with
#check if word starts with "test"
^test.*$
Example 2: regex starts with
{ "Category" : /^ABC.*/ }
#check if word starts with "test"
^test.*$
{ "Category" : /^ABC.*/ }