首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >SpannableStringBuilder用Regex替换内容

SpannableStringBuilder用Regex替换内容
EN

Stack Overflow用户
提问于 2016-10-12 19:03:40
回答 2查看 5.6K关注 0票数 7

在下面的代码中,我将用SpannableString标记大括号之间的内容,并移除花括号,但这会产生错误的结果。

代码语言:javascript
复制
String text = "the {quic}k brown {fox} jumps {over} the lazy dog. {A Quick} {brow}nfoxjumpsoverthelazydog";

tv.setText(makeSpannable(text, "\\{.*?\\}"));
public SpannableStringBuilder makeSpannable(String text, String regex) {
    SpannableStringBuilder spannable = new SpannableStringBuilder(text);
    Pattern pattern = Pattern.compile(regex);
    Matcher matcher = pattern.matcher(spannable.toString());
    while (matcher.find()) {
        String word = matcher.group();
        String abbr = word.toString().substring(1, word.length() - 1);
        spannable.setSpan(new ForegroundColorSpan(Color.RED), matcher.start(), matcher.end(),  Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
        spannable.replace(matcher.start(), matcher.start() + abbr.length() , abbr);
    }
    return spannable;
}

输入:

代码语言:javascript
复制
the {quic}k brown {fox} jumps {over} the lazy dog. {A Quick} {brow}nfoxjumpsoverthelazydog

输出:

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2016-10-12 21:22:45

代码语言:javascript
复制
String text = "the {quic}k brown {fox} jumps {over} the lazy dog. {A Quick} {brow}nfoxjumpsoverthelazydog";

tv.setText(makeSpannable(text, "\\{.*?\\}"));

public SpannableStringBuilder makeSpannable(String text, String regex) {

    StringBuffer sb = new StringBuffer();
    SpannableStringBuilder spannable = new SpannableStringBuilder();

    Pattern pattern = Pattern.compile(regex);
    Matcher matcher = pattern.matcher(text);
    while (matcher.find()) {
        sb.setLength(0); // clear
        String group = matcher.group();
        // caution, this code assumes your regex has single char delimiters
        String spanText = group.substring(1, group.length() - 1);
        matcher.appendReplacement(sb, spanText);

        spannable.append(sb.toString());
        int start = spannable.length() - spanText.length();

        spannable.setSpan(new ForegroundColorSpan(Color.RED), start, spannable.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
    }
    sb.setLength(0);
    matcher.appendTail(sb);
    spannable.append(sb.toString());
    return spannable;
}
票数 16
EN

Stack Overflow用户

发布于 2016-10-12 21:57:59

如果您不反对使用html:

代码语言:javascript
复制
tv.setText(Html.fromHtml(makeStringBuffer(text, regex, Color.RED).toString()));

private StringBuffer makeColoredStringBuffer(String text, String regex, int color) {
    // create a buffer to hold the replaced string
    StringBuffer sb = new StringBuffer();
    // create the pattern matcher
    Matcher m = Pattern.compile(regex).matcher(text);
    // iterate through all matches
    while (m.find()) {
        // get the match
        String word = m.group();
        // remove the first and last characters of the match and surround with html font tag
        String abbr = String.format("<font color='#%06X'>%s</font>", (0xFFFFFF & color), word.substring(1, word.length() - 1));
        // appendReplacement handles replacing within the current match's bounds
        m.appendReplacement(sb, abbr);
    }
    // add any text left over after the final match
    m.appendTail(sb);
    return sb;
}

如果您想使用SpannableString

代码语言:javascript
复制
tv.setText(makeColoredSpannable(text, regex, Color.RED));

private SpannableStringBuilder makeColoredSpannable(String text, String regex, int color) {
    // create a spannable to hold the final result
    SpannableStringBuilder spannable = new SpannableStringBuilder();
    // create a buffer to hold the replaced string
    StringBuffer sb = new StringBuffer();
    // create the pattern matcher
    Matcher m = Pattern.compile(regex).matcher(text);
    // iterate through all matches
    while (m.find()) {
        // get the match
        String word = m.group();
        // remove the first and last characters of the match
        String abbr = word.substring(1, word.length() - 1);
        // clear the string buffer
        sb.setLength(0);
        // appendReplacement handles replacing within the current match's bounds
        m.appendReplacement(sb, abbr);
        // append the new colored section to the spannable
        spannable.append(sb);
        spannable.setSpan(new ForegroundColorSpan(color), spannable.length() - abbr.length(), spannable.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
    }
    // clear the string buffer
    sb.setLength(0);
    // add any text left over after the final match
    m.appendTail(sb);
    spannable.append(sb);
    return spannable;
}
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/40006444

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档