I have this string
§serverUrl§/image/?url=§externalMedia.data.image§
and I want to match only the string inside the §
character.
(serverUrl and externalMedia.data.image).
I'm using this pattern :
/§.+§/g
but it catches also the characheters between the two groups.
Any help would be appreciate. Thanks