将char放入一个java字符串中,每N个字符 [英] Putting char into a java string for each N characters

查看:28
本文介绍了将char放入一个java字符串中,每N个字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个长度可变的 java 字符串.

I have a java string, which has a variable length.

我需要将 "<br>" 放入字符串中,每 10 个字符.

I need to put the piece "<br>" into the string, say each 10 characters.

例如这是我的字符串:

`this is my string which I need to modify...I love stackoverlow:)`

我如何获得这个字符串?:

How can I obtain this string?:

`this is my<br> string wh<br>ich I nee<br>d to modif<br>y...I love<br> stackover<br>flow:)`

谢谢

推荐答案

类似:

public static String insertPeriodically(
    String text, String insert, int period)
{
    StringBuilder builder = new StringBuilder(
         text.length() + insert.length() * (text.length()/period)+1);

    int index = 0;
    String prefix = "";
    while (index < text.length())
    {
        // Don't put the insert in the very first iteration.
        // This is easier than appending it *after* each substring
        builder.append(prefix);
        prefix = insert;
        builder.append(text.substring(index, 
            Math.min(index + period, text.length())));
        index += period;
    }
    return builder.toString();
}

这篇关于将char放入一个java字符串中,每N个字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆