I need help with a unique form validation requirement using regex. The values must be integers between -168 and 10688, where negative values range from -168 to -10688. What makes this challenging is that users must include leading zeros, with 4 characters required for negative values and 5 characters for positive values. For example, -023 is valid, as well as 00000 and 00345. However, 0, 000, and -000 are not valid. Can someone please assist me in implementing this regex validation? I'm worried it may be too complicated. Your help is greatly appreciated! ;(