使用 sed 获取单词的第一个字母

发布于 2024-12-11 11:32:57 字数 110 浏览 0 评论 0原文

我需要一个打印名字第一个字母的 bash 脚本。示例:Ruben Van Den Bosshe 变为 RVDB 或 Ken Van de Wilde 变为 KVdW

我想使用 sed 命令。

I need a bash script that prints the first letter of a name. Example: Ruben Van Den Bosshe becomes RVDB or Ken Van de Wilde becomes KVdW

I want to use the sed command.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

澉约 2024-12-18 11:32:57
$ echo 'Ken Van de Wilde' | sed 's/\B\w*//g;s/\s//g'
KVdW
$ echo 'Ken Van de Wilde' | sed 's/\B\w*//g;s/\s//g'
KVdW
夏了南城 2024-12-18 11:32:57

可能有一种更简洁的方法可以做到这一点,但以下似乎可行:

$ echo 'Ken Van de Wilde' | sed 's/\(\w\)\w*\( \|$\)/\1/g'
KVdW
$ echo 'Ruben Van Den Bosshe' | sed 's/\(\w\)\w*\( \|$\)/\1/g'
RVDB

要稍微分解该正则表达式,它依次匹配以下内容:

  • 一个单词的字母,在第一组中捕获:\(\ w\)
  • 零个或多个单词字母:\w*
  • 最后是空格或行尾:\( \|$\)

该序列被第一组中捕获的任何内容替换: <代码>\1

There's probably a neater way of doing this, but the following seems to work:

$ echo 'Ken Van de Wilde' | sed 's/\(\w\)\w*\( \|$\)/\1/g'
KVdW
$ echo 'Ruben Van Den Bosshe' | sed 's/\(\w\)\w*\( \|$\)/\1/g'
RVDB

To break down that regular expression a bit, it matches the following in turn:

  • A letter of a word, captured in the first group: \(\w\)
  • Zero or more letters of words: \w*
  • And finally, either a space or the end of the line: \( \|$\)

That sequence is replaced with whatever was captured in the first group: \1

最终幸福 2024-12-18 11:32:57

这应该在 sed 的所有 POSIX 实现中兼容:

echo "Someone Is Watching" | sed 's/\([^[:space:]]\)[^[:space:]]*[[:space:]]*/\1/g'
SIW

This should be compatible across all POSIX implementations of sed:

echo "Someone Is Watching" | sed 's/\([^[:space:]]\)[^[:space:]]*[[:space:]]*/\1/g'
SIW
萌面超妹 2024-12-18 11:32:57

Kev 的答案可以稍微改进:

echo 'K Van de Wilde' | sed 's/\B.//g;s/\s//g'

或者如果所有单词都是两个或更多字符,甚至可以缩短为:

echo 'Ken Van de Wilde' | sed 's/\B.\s*//g'

如果有人知道如何提取单个字母单词的特殊情况并将其合并到上面的正则表达式中,我会很感兴趣。

Kev's answer can be improved slightly:

echo 'K Van de Wilde' | sed 's/\B.//g;s/\s//g'

or even shortened if all words are two characters or more to:

echo 'Ken Van de Wilde' | sed 's/\B.\s*//g'

If anyone knows how to extract the special case of a single letter word and incorporate it into the above regex I would be interested.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文