I'm trying to come up with some regex to handle the # sign.
Example, #PRODUCT_143#
If the input were #PRODUCT_143, the regex #PRODUCT_(\d*$)
matches and returns 143 as the match. But adding the # to the end of both the input and the regex causes it to break. what do I need to do here to get this to match?