I want to check the first ten bytes of RESPONSE_BODY contain non-printable character or not ``` SecRule RESPONSE_BODY[0:10] "@rx [\x00-\x08\x0b\x0c\x0e-\x1f])" ``` But it seems RESPONSE_BODY[0:10] does not work, how can i do that?