Now using the correct regex for digits

This commit is contained in:
Eduardo Cueto Mendoza 2020-07-28 11:56:44 -06:00
parent 389f3386a8
commit 067b069ba8
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
numchar = "500W"
numchar = "0W"
renumchar = r"\d[0-9]."
renumchar = r"(\d+)"
num = match(renumchar,numchar)