Let's say I have a string defined as such:
szErrInvalidEmailLen db "Email entered is too long, valid is less than 260 characters", 0
is there anyway to change the 260 to something like this:
szErrInvalidEmailLen db "Email entered is too long, valid is less than MAX_EMAIL_LEN characters", 0
where MAX_EMAIL_LEN is defined as MAX_EMAIL_LEN equ 25
So, if I change MAX_EMAIL_LEN it will reflect in the string?