william
07/05/2019, 9:04 PMRegex("{}")
shows up with the errors Dangling metacharacter
on both the opening and closing bracket{
or }
don't have special meaning in regular expressions so im not so sure what the meaning isShawn
07/05/2019, 9:10 PMa{4,6}
for example matches a
at least four and no more than six timeswilliam
07/05/2019, 9:16 PM\\{
only for the first curly bracketKroppeb
07/05/2019, 10:05 PM{
but because it's in a string literal I assume, you need to escape said \
william
07/05/2019, 10:21 PMKroppeb
07/06/2019, 12:33 AMwilliam
07/06/2019, 3:18 AM