我有以下示例字符串:
这个字符串非常大,有 160 多个字符。我们可以用子字符串剪切它,所以它只有 160 个字符,但它会剪切最后一个看起来有点愚蠢的单词。
现在我想要大约 160 个字符,所以我使用substring()
SELECT SUBSTRING('This string is very large, it has more then 160 characters.
We can cut it with substring so it just has 160 characters but then it cuts
of the last word that looks kind of stupid.', 0 , 160)
结果:
这个字符串非常大,有 160 多个字符。我们可以用子字符串剪切它,所以它只有 160 个字符,但它会剪切最后一个单词 l
现在我需要找到一种方法来完成最后一个单词,在这种情况下是单词looks
任何想法什么是解决这个问题的最佳方法?