对于我的应用程序,我创建了一个 QR 码,然后获取该位图并将文本添加到位图中,但是我需要文本不要延伸得比位图更长。所以我想要做的是通过取 25 个字符创建一个文本数组,然后在该 25 个字符部分中找到 (" ") 的最后一个索引。在那个空间,我希望能够用 \n 替换那个空间来开始一个新行。
所以计划是如果我有一个看起来像“ Hello this is my name and I am longer than 25 charters and I have lots of spaces so that this example will work well.
”的字符串
我想让它出来
Hello this is my name and
I am longer than 25
charters and I have lots
of spaces so that this
example will work well.
为了做到这一点,我数了 25 个字符,然后回到最讨厌的空间,此时我按 Enter,我希望我的应用程序为我执行此操作。
我的英语不是很好,所以如果有什么不明白的地方告诉我,我会尽力解释。谢谢