The problem comes again. I'm sorry,
The number is put forward. For example, the user inputs a001 & a100.
If it's a number like a001, I need to remove the preceding a00.
If it's a number like a100, I just need to remove a100. The above code can achieve this.
That is to say, there needs to be a judgment on the value input by the user. If the number after the letter is 0, don't take it. Take the number after 0. Like what I said above, for a001, I only take 1. But for other input a100, I need to take 100. This feels relatively difficult.
The number is put forward. For example, the user inputs a001 & a100.
If it's a number like a001, I need to remove the preceding a00.
If it's a number like a100, I just need to remove a100. The above code can achieve this.
That is to say, there needs to be a judgment on the value input by the user. If the number after the letter is 0, don't take it. Take the number after 0. Like what I said above, for a001, I only take 1. But for other input a100, I need to take 100. This feels relatively difficult.

