J
Julie
Suppose a string of the following format:
/field=value string /field2=value string2 /field3=value string3
where
field is [a-z], [0-9], and _
value string is any alphanumeric text that doesn't include =, but may include /
What is the regex expression that will split this into field & value?
Thanks
/field=value string /field2=value string2 /field3=value string3
where
field is [a-z], [0-9], and _
value string is any alphanumeric text that doesn't include =, but may include /
What is the regex expression that will split this into field & value?
Thanks