How to pass Philippine Currency in QRegExp?
I am currently studying Regex and I came up in this regex: r"\₱[0-9]*[.]{,1}[0-9]{,2}" for QRegExp is and currently It is only good if it starts with ₱ other than that my app is breaking is there a way to get these following formats: 100.0 100.00 ₱100.00 >Solution : r"₱?\d+(?:\.[0-9]{,2})?" The escape before the ₱ symbol… Read More How to pass Philippine Currency in QRegExp?