У меня есть это регулярное выражение:
{([^\]]*)} // any character except ']' but i want it to accept also '\]' this combination of 2chars
Пример
'Lorem Ipsum is simply] dummy text' should return => 'Lorem Ipsum is simply' (and this ones does) but
'Lorem Ipsum is simply\] dummy text' => should return all the text because the ']' is escaped
надеюсь, что это имеет смысл