タイトル : Re: TextBox1の文字数をカウント 投稿日 : 2007/05/14(Mon) 14:38 投稿者 : なおこ(・∀・)
お世話になります。 改行を数えたくないのなら、String.Replace で取り除いたのち カウントすればよいでしょう。 Dim text As String = Me.TextBox1.Text text = text.Replace(ControlChars.NewLine, "") Console.WriteLine("文字数:" & text.Length.ToString()) Console.WriteLine("バイト数:" & System.Text.Encoding.Default.GetByteCount( text)) |