I am trying to get content between curly braces with JavaScript. I found this thread: Regex to get string between curly braces "{I want what's between the curly bra
Try this
/[^{\}]+(?=})/g
for example
Welcome to RegExr v2.1 by {gskinner.com}, {ssd.sd} hosted by Media Temple!
it will return 'gskinner.com', 'ssd.sd'