I try to define a DialogFlow CX custom entity for values like e.g. "0.23" using the Regex option and entering the following Regex: [+]?([.]\d+|\d+([.]\d+)?)
But DiglogFlow CX would not accept this Regex and throw the error Validate entity failed because of the following reasons: Regular expression match is too broad: [+]?([.]\d+|\d+([.]\d+)?)
I have this issue with many, many other Regex examples. Why can't I use Regex like the one above? This is not broad at all, right? This perfectly defines a very specific number format which I need. It seems I am somehow not understanding this all all...?!