相思资源网 Design By www.200059.com
本文实例讲述了js实现C#的StringBuilder效果。分享给大家供大家参考,具体如下:
/* ##################### DO NOT MODIFY THIS HEADER ##################### # Title: StringBuilder Class # # Description: Simulates the C# StringBuilder Class in Javascript. # # Author: Adam Smith # # Email: ibulwark@hotmail.com # # Date: November 12, 2006 # ##################################################################### */ // Simulates the C# StringBuilder Class in Javascript. // Parameter["stringToAdd"] - The string to add. StringBuilder = function(stringToAdd) { var h = new Array(); if(stringToAdd){h[0] = stringToAdd;} this.Append = Append; this.AppendLine = AppendLine; this.ToString = ToString; this.Clear = Clear; this.Length = Length; this.Replace = Replace; this.Remove = Remove; this.Insert = Insert; this.GetType = GetType; // Appends the string representation of a specified object to the end of this instance. // Parameter["stringToAppend"] - The string to append. function Append(stringToAppend) { h[h.length] = stringToAppend; } // Appends the string representation of a specified object to the end of this instance with a carriage return and line feed. // Parameter["stringToAppend"] - The string to append. function AppendLine(stringToAppend) { h[h.length] = stringToAppend; h[h.length] = "\r\n"; } // Converts a StringBuilder to a String. function ToString() { if(!h){ return ""; } if(h.length<2){ return (h[0])""; } var a = h.join(''); h = new Array(); h[0] = a; return a; } // Clears the StringBuilder function Clear() { h = new Array(); } // Gets the StringBuilder Length function Length() { if(!h){return 0;} if(h.length<2){ return (h[0])"oldValue"] - The string to replace. // Parameter["newValue"] - The string that replaces oldValue. // Parameter["caseSensitive"] - True or false for case replace. // Return Value - A reference to this instance with all instances of oldValue replaced by newValue. function Replace(oldValue, newValue, caseSensitive) { var r = new RegExp(oldValue,(caseSensitive==true)"startIndex"] - The position where removal begins. // Parameter["length"] - The number of characters to remove. // Return Value - A reference to this instance after the excise operation has occurred. function Remove(startIndex, length) { var s = h.join(''); h = new Array(); if(startIndex<1){h[0]=s.substring(length, s.length);} if(startIndex>s.length){h[0]=s;} else { h[0]=s.substring(0, startIndex); h[1]=s.substring(startIndex+length, s.length); } return this; } // Inserts the string representation of a specified object into this instance at a specified character position. // Parameter["index"] - The position at which to insert. // Parameter["value"] - The string to insert. // Return Value - A reference to this instance after the insert operation has occurred. function Insert(index, value) { var s = h.join(''); h = new Array(); if(index<1){h[0]=value; h[1]=s;} if(index>=s.length){h[0]=s; h[1]=value;} else { h[0]=s.substring(0, index); h[1]=value; h[2]=s.substring(index, s.length); } return this; } // Gets the type function GetType() { return "StringBuilder"; } };
希望本文所述对大家JavaScript程序设计有所帮助。
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无js实现C#的StringBuilder效果完整实例的评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。