[VB.NET]Strings.Left(Right)で指定文字列数の文字列を返す
書式
1.Public Function Right (str As String, Length As Integer) As String
文字列の右端から指定された文字数分の文字列です。
2.Public Function Left (str As String, Length As Integer) As String
文字列の左側から数えて、指定された文字数を含んでいる文字列です。
使用例
Module Module1 Sub Main() 'String型変数の定義 Dim testString As String = "Study skill in arkgame" ' 文字列の右端から7文字数の文字列を返す Dim subString As String = Right(testString, 7) Console.WriteLine("文字列の右端から指定7文字の文字列") Console.WriteLine(subString) ' 文字列の左端から7文字数の文字列を返す Dim sbString As String = Left(testString, 7) Console.WriteLine("文字列の左端から指定7文字の文字列") Console.WriteLine(sbString) Console.ReadKey() End Sub End Module
結果
文字列の右端から指定7文字の文字列
arkgame
文字列の左端から指定7文字の文字列
Study s