gpt4 book ai didi

function - 从 Liquid 中的字符串中获取子字符串?

转载 作者:行者123 更新时间:2023-12-02 20:53:57 24 4
gpt4 key购买 nike

我正在与 Jekyll 合作,我有字符串 balh blah blah&garbage **&*&% garbage <h1>TITLE</h1> &^*$%"

有办法获取TITLE吗?我查看了函数here但我没有看到可以使用的东西。

最佳答案

split来救援!

{% assign str = 'garbage <h1>TITLE</h1> moregarbage' %}
{% assign a = str | split: '<h1>' %}

我们现在有garbage在 a[0] 和 TITLE</h1> moregarbage 中在[1]

{% assign b = a[1] | split: '</h1>' %}

我们现在有TITLE在 b[0] 和 moregarbage 中在b[1]中

关于function - 从 Liquid 中的字符串中获取子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27836924/

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