博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将字符串中从n位开始以*代替
阅读量:6614 次
发布时间:2019-06-24

本文共 453 字,大约阅读时间需要 1 分钟。

///     /// 将字符串中从n位开始以*代替    ///     /// 字符串    /// 开始位置    /// 
public static string GetPingbStr(string str, int starIndex) { string strend = ""; if (str.Length >= starIndex) { for (int i = 0; i < str.Length - (starIndex); i++) { strend += "*"; } str = str.Substring(0, starIndex); } else strend = str; return str + strend; }

 

转载地址:http://uxhso.baihongyu.com/

你可能感兴趣的文章
windows下的Oracle卸载
查看>>
sqlserver查看死锁的存储过程
查看>>
在VirtualBox中的CentOS 6.3下安装VirtualBox增强包(GuestAd...
查看>>
Java开发中的23种设计模式详解(转)
查看>>
我的友情链接
查看>>
组策略18招
查看>>
关于Android中的数据存储
查看>>
Tomcat配置日志生产功能
查看>>
js的自执行函数
查看>>
移植Qt与Tslib到X210开发板的体会
查看>>
Nginx + webpy 和FastCGI搭建webpy环境
查看>>
new static 跟 new self 区别
查看>>
使用JdbcTemplate过程中使用到多个参数和like模糊
查看>>
解决eclipse中无法删除Tomcat服务器中的项目,报maven is required and cannot be removed from the server错误情况...
查看>>
修改页面JS 360浏览器
查看>>
尚学linux课程---3、linux网络说明
查看>>
Git 跟 GitHub 是什么关系?
查看>>
String.split()方法
查看>>
IE6下jQuery选中select的BUG
查看>>
Tensorflow在win10下的安装(CPU版本)
查看>>