I'm having trouble creating a match group to extract two values from a string using python
Here's my input:
# SomeKey: Value Is A String
And I'd like to be able to extract SomeKey
and Value Is A String
using a python match group / regex statement. Here's what I have so far
import re
line = "# SomeKey: Value Is A String"
mg = re.match(r"# <key>: <value>", line)