Android多行textview - 特定行的字符数?

发布于 2024-11-25 10:51:57 字数 110 浏览 0 评论 0原文

我正在尝试获取多行文本视图的特定行的字符数。根据其他帖子,我已经得到了相关文本视图的布局。我看到有几个方法传入 (int line),但没有一个方法返回特定行的字符计数?我只是想念它吗?任何帮助将不胜感激。

I'm trying to get the character count of a particular line of a multi-line textview. Based on other posts, I've gotten the Layout of the textview in question. I see several methods that pass in an (int line), but none that return a character count of a particular line? Am I just missing it? Any help would be appreciated.

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

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

发布评论

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

评论(2

梨涡 2024-12-02 10:51:57

这将按行分割文本视图中的文本。

String text;
String[] lines = text.split("\\r?\\n");
int characterCount = lines[0].length();

This will split the text in the textview by lines.

String text;
String[] lines = text.split("\\r?\\n");
int characterCount = lines[0].length();
游魂 2024-12-02 10:51:57

如果您只是想获取字符串的计数,您是否尝试过 String.length(myString) 返回字符串中有多少个字符的计数?

if your just trying to get the count of a string, have you tried String.length(myString) to return a count of how many characters are in the string?

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