Hacker News
new
past
comments
ask
show
jobs
points
by
abound
6 hours ago
|
comments
by
nine_k
5 hours ago
|
[-]
Something like this should work, assuming your encoding is Unicode (normally UTF-8), which grep would interpret:
grep -P '[\x{200B}\x{200C}\x{200D}\x{FEFF}]' code.ts
See
https://stackoverflow.com/q/78129129/223424
reply