Unity杂文——String按行删除

原文地址

问题

在unity开发过程中,如果一个string字符串有多行,如果我们想删除前面一行或者多行应该如何操作?

解决方案

private static string DeleteStrLine(string text, int startLine, int lineCount)
{
    var curIndex = 0;
    int? remStartIndex = null;
    var sum = 1;

    while (sum < startLine + lineCount) 
    {
        if (sum == startLine) remStartIndex = curIndex;
        
        curIndex = text.IndexOf("\n", curIndex, StringComparison.Ordinal);
        if (curIndex < 0)
        {
            curIndex = text.Length;
            break;
        }
        curIndex++;
        sum++;
    }
    if (remStartIndex == null)
    {
        return text;
    }
    text = text.Remove(remStartIndex.Value, curIndex - remStartIndex.Value);
    return text;
}

思路就是通过IndexOf函数遍历找到需要删除的行对应的"\n"(换行)的索引,然后再通过Remove函数对开始和结束的索引进行删除。

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容