У меня есть список строк, как показано ниже: (без кавычек)
"<someother string without :>:abc\t<some other string without \t>"
"<someother string without :>:abc,cde\t<some other string without \t>"
"<someother string without :>:abc,efg,cde\t<some other string without \t>"
"<someother string without :>:abc,cde\t<some other string without \t>"
Хотел бы преобразовать их в:
"<someother string without :>|abc\t<some other string without \t>"
"<someother string without :>|abc|cde\t<some other string without \t>"
"<someother string without :>|abc|efg|cde\t<some other string without \t>"
"<someother string without :>|abc|cde\t<some other string without \t>"
Мне интересно, выполнимо ли это?
Спасибо