Hello
I have a variable lets say num_bers.
In my variable I have numbers and sometimes numbers with letters example:
num_bers = 1234
num_bers = 1234K
num_bers = 12111
num_Bers = 124126760j
The problem is that: If variable contains capital letter like: 1234K I would like it to be changed to : 1234k but if it is for example 1234l I would like it to stay this way: 1234l
how do I do that?
I understand i can do this by: set variable value but I don’t know the coding
Any ideas?