String:字符串型。我觉得就是我们要表达的一句话,一段话,一篇文章。一个String可以储存约2147483648个Unicode字符。21亿个Unicode字符,一般的书也就就十几万字吧,我的一本快800页的书是124万字。当然我们实际使用的时候是不可能一个String存储这么多字符的。
String的讲解,使用代码讲解吧:
Sub Main() Dim s As String s = "This is a test." Console.WriteLine(s) '显示字符串的长度 Dim intlength As Integer intlength = s.Length Console.WriteLine(intlength) '截取部分字符串 Dim s1 As String s1 = s.Substring(1,3) Console.WriteLine(s1) '字符串全部转为大写 Dim s2 As String s2 = s.ToUpper() Console.WriteLine(s2) '字符串全部转为小写 Dim s3 As String s3 = s.ToLower Console.WriteLine(s3) Console.ReadKey() End Sub
执行结果:
顺便需要讲一下的是Format()函数,可以将一个字符串格式化为我们需要的样子
Sub Main() Dim thisTime As String thisTime = Format(Now(),"yyyyMMddhhmmss") Console.WriteLine(thisTime) thisTime = Format(Now(),"yyyy-MM-dd hh:mm:ss") Console.WriteLine(thisTime) thisTime = Format(Now(),"yyyy/MM/dd hh:mm:ss") Console.WriteLine(thisTime) thisTime = Format(Now(),"yyyy年MM月dd日 hh时mm分ss秒") '--1 Console.WriteLine(thisTime) thisTime = Format(Now(),"yyyy年M月d日 h时m分s秒") '--2 Console.WriteLine(thisTime) Console.ReadKey() End Sub
其中,Now()是获得系统对应的当前日期和时间,
yyyy是年 ,
MM是2位的月份,
dd是2位的日,
hh是2位的小时,
mm是2位的分钟,
ss是2位的秒钟。
由于.net平台下C#和vb.NET很相似,本文也可以为C#爱好者提供的参考。
学习更多vb.net知识,请参看 vb.net 教程 目录
原文链接:https://www.f2er.com/vb/256792.html