What will match the regular expression ^83?
- any string that begins with 83
- any string that ends with 83
- any string that includes 83
- any string with values greater than 83
Explanation & Hint: The expression ^83 indicates any string that begins with 83 will be matched. |