首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

一个Sting包含几个单词怎么将第一个单词全小写,其他单词首字母大写,及初学者有关问题

2012-02-07 
一个Sting包含几个单词如何将第一个单词全小写,其他单词首字母大写,及菜鸟问题例如:china_great_wall要转

一个Sting包含几个单词如何将第一个单词全小写,其他单词首字母大写,及菜鸟问题
例如:china_great_wall   要转换成   chinaGreatWall
请说明方法的作用及各参数表示的什么。

另一个问题:String型如何转换成Int型。

没用过VB,只会java。看着原来的VB程序写东西,请大家帮忙。

[解决办法]
Private Sub Command1_Click()
Dim s As String
Dim b() As String
Dim nS As String
s = "china great wall "
b = Split(s, " ")
Dim i As Integer
For i = 0 To UBound(b)
If i = 0 Then
b(i) = LCase(b(i))
Else
b(i) = UCase(Left(b(i), 1)) & Right(b(i), Len(b(i)) - 1)
End If
nS = nS & b(i)
Next i
Debug.Print nS
End Sub

string转int用cint函数
dim s as string
dim i as integer
s= "12 "
i=cint(s)

热点排行