79605030

Date: 2025-05-03 19:10:52
Score: 0.5
Natty:
Report link

The non-white-space pattern \S (uppercase \S opposite of \s) documented for sed here was chosen because often we need to match spaces or non-spaces in regexp:

sed 's/\(https\S*\)/"\1"/g' elenco.txt

same as

sed -E 's/(https\S+)/"\1"/g' elenco.txt

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Marco Munari