Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキストボックス内のテキストの最初の 3 文字を取得するにはどうすればよいですか?
例えば、textBox1.Text = "HITHEREGUYS"
textBox1.Text = "HITHEREGUYS"
最初の 3 文字を取得すると、 が表示されHITます。
HIT
string result = textBox1.Text.Substring(0,3);
部分文字列を使用
これは基本的にあなたがそれを得る方法です:
LEFT(textbox1.text, 3)