I have text file format like this
SKI
SKII
SKIII
SKIV
SKV
SKVI
SKVII
I want to convert it with sed command into numerical. Can you help me out?
SK1
SK2
SK3
SK4
SK5
SK6
SK7
Thanks a lot!
|
I have text file format like this
I want to convert it with sed command into numerical. Can you help me out?
Thanks a lot!
| |||||||||
feedback
|
|
There's no trivial way to do that. Brute force plus some care is required:
The longer sequences must precede the shorter ones, in general. And this only deals with 1-8; generalizing it is modestly hard.
If your forego the SK prefix, then with a little care, you do not need 29 separate
| |||||||
feedback
|