登录 注册
当前位置:主页 > 资源下载 > 31 > C#入门经典教程:字符串修改指南

C#入门经典教程:字符串修改指南

  • 更新:2024-05-14 16:59:50
  • 大小:4.81MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:.Net - 课程资源
  • 格式:PPT

资源介绍

字符串修改 Insert(int, string) string str = "and he stoppeth three"; string verse = str.Insert(str.IndexOf(" three"), " one of"); PadRight, PadLeft string rem = "and so on"; rem = rem.PadRight(rem.Length + 3, '.'); Remove(P, n) Replace(A, B) string str = “nap ace sap path"; string verse = str.Replace(‘a’, ‘i’); verse = str.Replace(“a”, “i”);