I\'d like to use a number with a decimal point in a Django URL pattern but I\'m not sure whether it\'s actually possible (I\'m not a regex expert).
Here\'s what I wa
I don't know about Django specifically, but this should match the URL:
r"^/item/value/(\d+\.\d+)$"