regex starts with letter code example
Example 1: regex starts with
{ "Category" : /^ABC.*/ }
Example 2: regex start word
Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt
{ "Category" : /^ABC.*/ }
Just use "^" to specify matching a pattern at the beginning of each line.
Example with grep:
grep "^pattern" file.txt