Skip to main content

New answers tagged

0 votes

remove <200b> character from text file

Using vi, for all lines (1,$) substitute (s) all zero-width-space instances per line by nothing (//g): :1,$s/\%u200b//g
Will N.'s user avatar

Top 50 recent answers are included