gpt4 book ai didi

string - 使用 Sed 获取第 N 个字符

转载 作者:行者123 更新时间:2023-12-04 18:09:32 25 4
gpt4 key购买 nike

我正在玩最终幻想 7,我在你在神罗总部图书馆的部分,你必须写下第 N 个字母 - 减去空格,其中 Nth 是数字书名的前面——对于每本书似乎不属于当前房间的书,其中有 4 本书。

我需要一个 sed 脚本或其他命令行来打印书名并获得 Nth它的名字中的字母。

最佳答案

你不需要sed为了那个原因。您可以使用 bash字符串替换:

$ book="The Ancients in History"
$ book="${book// /}" # Do global substition to remove spaces
$ echo "${book:13:1}" # Start at position 13 indexed at 0 and print 1 character
H

关于string - 使用 Sed 获取第 N 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17873100/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com