I use the regex
(?<=Charset:\\s).+(?=)
on the following data (There is no newline char in the data, I made it look better
An easy way is to use the non-greedy operator.
(?<=Charset:\s).+?(?=<br\/>)