Actually my question is quite simple:
I have a string like: 101222_1_1_ab;
I hope to change it into: 101222_1_ab_1
What bash commands should I use? and what to do in python? THanks
|
|
|
The easiest mechanism I can think of is to use
The Update Glenn Jackman recommends the following, far more legible, version:
|
|||||||||
|
|
This might work for you:
|
|||
|
|
|
FWIW, I would use
But since you ask:
|
|||
|
|
|
If you want to use sed, this splits at the underscores and rearranges:
Edit As @dmitry.malikov points out, the
|
|||||||||
|
|
Just with bash:
|
|||
|
|
Bash:
(wanted to put this in reply to glenn jackman) |
|||
|
|