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.
次の数字があるとしましょう:1286最後の桁を削除6して、最初の 3 桁128のみで終了したいとします。6また、数値と数値1286のみを入力として使用してこれを行いたいと思います。
1286
6
128
また、ac# ソリューションがあれば素晴らしいでしょう。ありがとう
編集: 6 と 1286 の間の数式を使用してこれを実行したいのですが、文字列を解析する方法は既に知っていますが、これは私が求めているものではありません。
string input = "OneTwoThree"; // Get first three characters string sub = input.Substring(0, 3);
sub文字列の最初の 3 文字、0 が開始位置、次に必要な文字数 (つまり、3) - ここで (0, 3) が入ります - もし ( 3, 3)、サブは「2」に等しい
sub
これはあなたが探しているものかもしれないと思います:)