I am trying to implement a regex rule that would allow users to enter white spaces, but it should not be all white spaces, nor begin or end with a white space. My research did not yield any workable solution. Currently, my rule looks like this, and I would like to add the white space requirement on top of that:
let string_rule = "^[a-zA-Z0-9_-]{3,16}$";