Trying to do the following: string = "2" replace to = "No 2"
using below regex in python:
re.sub(r'(.*)', r'No. \g<1>', '2')
But it returns:
'No. 2No. '
Can you please help what's going wrong?
Note: using 3.8.5 python version
Trying to do the following: string = "2" replace to = "No 2"
using below regex in python:
re.sub(r'(.*)', r'No. \g<1>', '2')
But it returns:
'No. 2No. '
Can you please help what's going wrong?
Note: using 3.8.5 python version
Copyright © 2021 Jogjafile Inc.
For me it works (maybe different python versions... I'm using 3.6.11 and it seems like 3.8's [which I assume OP is using]
re
works differently):But, I would suggest using a better regex:
This is better since it only catches the digits in the string:
where your regex will just take the entire string: