Odpowiedzi:
Spróbuj tego:
int x = Int32.Parse(TextBoxD1.Text);
Lub jeszcze lepiej:
int x = 0;
Int32.TryParse(TextBoxD1.Text, out x);
Ponadto, ponieważ Int32.TryParse
zwraca a bool
, możesz użyć jego wartości zwracanej do podjęcia decyzji o wynikach próby parsowania:
int x = 0;
if (Int32.TryParse(TextBoxD1.Text, out x))
{
// you know that the parsing attempt
// was successful
}
Jeśli jesteś ciekawy, różnica między Parse
iTryParse
najlepiej podsumować w następujący sposób:
Metoda TryParse jest podobna do metody Parse, z tym wyjątkiem, że metoda TryParse nie zgłasza wyjątku, jeśli konwersja się nie powiedzie. Eliminuje to potrzebę korzystania z obsługi wyjątków w celu przetestowania wyjątku formatu w przypadku, gdy s jest nieprawidłowy i nie można go pomyślnie przeanalizować. - MSDN
Int64.Parse()
. Jeśli dane wejściowe są inne niż int, otrzymasz wykonanie i ślad stosu za pomocą Int64.Parse
lub wartość logiczną za False
pomocą Int64.TryParse()
, więc potrzebujesz instrukcji if, takiej jak if (Int32.TryParse(TextBoxD1.Text, out x)) {}
.
Convert.ToInt32( TextBoxD1.Text );
Użyj tego, jeśli masz pewność, że zawartość pola tekstowego jest poprawna int
. Bezpieczniejszą opcją jest
int val = 0;
Int32.TryParse( TextBoxD1.Text, out val );
Zapewni to pewną wartość domyślną, której możesz użyć. Int32.TryParse
zwraca również wartość logiczną wskazującą, czy był w stanie parsować, czy nie, więc można nawet użyć jej jako warunku if
instrukcji.
if( Int32.TryParse( TextBoxD1.Text, out val ){
DoSomething(..);
} else {
HandleBadInput(..);
}
int.TryParse()
Nie rzuca się, jeśli tekst nie jest liczbowy.
int myInt = int.Parse(TextBoxD1.Text)
Innym sposobem byłoby:
bool isConvertible = false;
int myInt = 0;
isConvertible = int.TryParse(TextBoxD1.Text, out myInt);
Różnica między nimi polega na tym, że pierwszy zwróci wyjątek, jeśli wartość w polu tekstowym nie może zostać przekonwertowana, a drugi zwróci po prostu fałsz.
code
int NumericJL; bool isNum = int.TryParse (nomeeJobBand, out NumericJL); if (isNum) // Zachowane JL jest w stanie przekazać do int, a następnie przejść do porównania {if (! (NumericJL> = 6)) {//
Zachowaj ostrożność podczas używania Convert.ToInt32 () na char!
Zwróci UTF-16 kod znaku!
Jeśli uzyskasz dostęp do ciągu tylko w określonej pozycji za pomocą [i]
operatora indeksowania, zwróci a, char
a nie a string
!
String input = "123678";
^
|
int indexOfSeven = 4;
int x = Convert.ToInt32(input[indexOfSeven]); // Returns 55
int x = Convert.ToInt32(input[indexOfSeven].toString()); // Returns 7
int x = 0;
int.TryParse(TextBoxD1.Text, out x);
Instrukcja TryParse zwraca wartość logiczną wskazującą, czy parsowanie się powiodło, czy nie. Jeśli się powiedzie, przeanalizowana wartość zostanie zapisana w drugim parametrze.
Zobacz Int32.TryParse Method (String, Int32), aby uzyskać bardziej szczegółowe informacje.
Ciesz się tym ...
int i = 0;
string s = "123";
i =int.Parse(s);
i = Convert.ToInt32(s);
Chociaż istnieje już wiele rozwiązań, które opisują int.Parse
, we wszystkich odpowiedziach brakuje czegoś ważnego. Zazwyczaj reprezentacje ciągów wartości liczbowych różnią się w zależności od kultury. Elementy ciągów liczbowych, takie jak symbole walut, separatory grup (lub tysięcy) i separatory dziesiętne, różnią się w zależności od kultury.
Jeśli chcesz stworzyć solidny sposób na parsowanie łańcucha na liczbę całkowitą, ważne jest, aby wziąć pod uwagę informacje o kulturze. Jeśli tego nie zrobisz, zostaną użyte bieżące ustawienia kultury . To może sprawić użytkownikowi dość nieprzyjemną niespodziankę - lub nawet gorzej, jeśli analizujesz formaty plików. Jeśli chcesz po prostu parsować po angielsku, najlepiej po prostu wyraź to, określając ustawienia kultury, które mają być używane:
var culture = CultureInfo.GetCulture("en-US");
int result = 0;
if (int.TryParse(myString, NumberStyles.Integer, culture, out result))
{
// use result...
}
Aby uzyskać więcej informacji, przeczytaj o CultureInfo, w szczególności NumberFormatInfo w MSDN.
Możesz napisać własną metodę rozszerzenia
public static class IntegerExtensions
{
public static int ParseInt(this string value, int defaultValue = 0)
{
int parsedValue;
if (int.TryParse(value, out parsedValue))
{
return parsedValue;
}
return defaultValue;
}
public static int? ParseNullableInt(this string value)
{
if (string.IsNullOrEmpty(value))
{
return null;
}
return value.ParseInt();
}
}
I gdziekolwiek w kodzie po prostu zadzwoń
int myNumber = someString.ParseInt(); // Returns value or 0
int age = someString.ParseInt(18); // With default value 18
int? userId = someString.ParseNullableInt(); // Returns value or null
W tym konkretnym przypadku
int yourValue = TextBoxD1.Text.ParseInt();
StringExtensions
zamiast IntegerExtensions
, ponieważ te metody rozszerzenia działają na a, string
a nie na int
?
Jak wyjaśniono w dokumentacji TryParse , funkcja TryParse () zwraca wartość logiczną, która wskazuje, że znaleziono prawidłową liczbę:
bool success = Int32.TryParse(TextBoxD1.Text, out val);
if (success)
{
// Put val in database
}
else
{
// Handle the case that the string doesn't contain a valid number
}
Możesz użyć albo
int i = Convert.ToInt32(TextBoxD1.Text);
lub
int i = int.Parse(TextBoxD1.Text);
//May be quite some time ago but I just want throw in some line for any one who may still need it
int intValue;
string strValue = "2021";
try
{
intValue = Convert.ToInt32(strValue);
}
catch
{
//Default Value if conversion fails OR return specified error
// Example
intValue = 2000;
}
Możesz przekonwertować ciąg na int w C #, używając:
Funkcje klasy konwersji czyli Convert.ToInt16()
, Convert.ToInt32()
, Convert.ToInt64()
lub przy użyciu Parse
i TryParse
funkcje. Przykłady podano tutaj .
Możesz także użyć metody rozszerzenia , więc będzie ona bardziej czytelna (chociaż wszyscy są już przyzwyczajeni do zwykłych funkcji Parse).
public static class StringExtensions
{
/// <summary>
/// Converts a string to int.
/// </summary>
/// <param name="value">The string to convert.</param>
/// <returns>The converted integer.</returns>
public static int ParseToInt32(this string value)
{
return int.Parse(value);
}
/// <summary>
/// Checks whether the value is integer.
/// </summary>
/// <param name="value">The string to check.</param>
/// <param name="result">The out int parameter.</param>
/// <returns>true if the value is an integer; otherwise, false.</returns>
public static bool TryParseToInt32(this string value, out int result)
{
return int.TryParse(value, out result);
}
}
A potem możesz to tak nazwać:
Jeśli masz pewność, że Twój ciąg jest liczbą całkowitą, na przykład „50”.
int num = TextBoxD1.Text.ParseToInt32();
Jeśli nie masz pewności i chcesz zapobiec awariom.
int num;
if (TextBoxD1.Text.TryParseToInt32(out num))
{
//The parse was successful, the num has the parsed value.
}
Aby uczynić go bardziej dynamicznym, aby można go było parsować także do double, float itp., Możesz zrobić ogólne rozszerzenie.
Konwersja string
do int
można zrobić dla: int
, Int32
,Int64
oraz inne typy danych odzwierciedlających typy danych całkowitych w .NET
Poniższy przykład pokazuje tę konwersję:
Ten element (dla informacji) adaptera danych został zainicjowany na wartość int. To samo można zrobić bezpośrednio tak, jak
int xxiiqVal = Int32.Parse(strNabcd);
Dawny.
string strNii = "";
UsrDataAdapter.SelectCommand.Parameters["@Nii"].Value = Int32.Parse(strNii );
To by wystarczyło
string x = TextBoxD1.Text;
int xi = Convert.ToInt32(x);
Lub możesz użyć
int xi = Int32.Parse(x);
Więcej informacji można znaleźć w sieci Microsoft Developer Network
Możesz zrobić jak poniżej bez TryParse lub wbudowanych funkcji:
static int convertToInt(string a)
{
int x = 0;
for (int i = 0; i < a.Length; i++)
{
int temp = a[i] - '0';
if (temp != 0)
{
x += temp * (int)Math.Pow(10, (a.Length - (i+1)));
}
}
return x;
}
int i = Convert.ToInt32(TextBoxD1.Text);
Za pomocą metody parsowania możesz przekonwertować ciąg znaków na wartość całkowitą.
Na przykład:
int val = Int32.parse(stringToBeParsed);
int x = Int32.parse(1234);
Zawsze tak to robię:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace example_string_to_int
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string a = textBox1.Text;
// This turns the text in text box 1 into a string
int b;
if (!int.TryParse(a, out b))
{
MessageBox.Show("This is not a number");
}
else
{
textBox2.Text = a+" is a number" ;
}
// Then this 'if' statement says if the string is not a number, display an error, else now you will have an integer.
}
}
}
Tak bym to zrobił.
Jeśli szukasz długiej drogi, po prostu stwórz jedną metodę:
static int convertToInt(string a)
{
int x = 0;
Char[] charArray = a.ToCharArray();
int j = charArray.Length;
for (int i = 0; i < charArray.Length; i++)
{
j--;
int s = (int)Math.Pow(10, j);
x += ((int)Char.GetNumericValue(charArray[i]) * s);
}
return x;
}
METODA 1
int TheAnswer1 = 0;
bool Success = Int32.TryParse("42", out TheAnswer1);
if (!Success) {
Console.WriteLine("String not Convertable to an Integer");
}
METODA 2
int TheAnswer2 = 0;
try {
TheAnswer2 = Int32.Parse("42");
}
catch {
Console.WriteLine("String not Convertable to an Integer");
}
METODA 3
int TheAnswer3 = 0;
try {
TheAnswer3 = Int32.Parse("42");
}
catch (FormatException) {
Console.WriteLine("String not in the correct format for an Integer");
}
catch (ArgumentNullException) {
Console.WriteLine("String is null");
}
catch (OverflowException) {
Console.WriteLine("String represents a number less than"
+ "MinValue or greater than MaxValue");
}
Ten kod działa dla mnie w Visual Studio 2010:
int someValue = Convert.ToInt32(TextBoxD1.Text);
To działa dla mnie:
using System;
namespace numberConvert
{
class Program
{
static void Main(string[] args)
{
string numberAsString = "8";
int numberAsInt = int.Parse(numberAsString);
}
}
}
Możesz wypróbować następujące. To będzie działać:
int x = Convert.ToInt32(TextBoxD1.Text);
Wartość ciągu w zmiennej TextBoxD1.Text zostanie przekonwertowana na Int32 i będzie przechowywana w x.
W C # v.7 można użyć wbudowanego parametru out, bez dodatkowej deklaracji zmiennej:
int.TryParse(TextBoxD1.Text, out int x);
out
w C # nie są teraz zniechęcane parametry?
To może ci pomóc; D
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
float Stukprijs;
float Aantal;
private void label2_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("In de eersre textbox staat een geldbedrag." + Environment.NewLine + "In de tweede textbox staat een aantal." + Environment.NewLine + "Bereken wat er moetworden betaald." + Environment.NewLine + "Je krijgt 15% korting over het bedrag BOVEN de 100." + Environment.NewLine + "Als de korting meer dan 10 euri is," + Environment.NewLine + "wordt de korting textbox lichtgroen");
}
private void button1_Click(object sender, EventArgs e)
{
errorProvider1.Clear();
errorProvider2.Clear();
if (float.TryParse(textBox1.Text, out Stukprijs))
{
if (float.TryParse(textBox2.Text, out Aantal))
{
float Totaal = Stukprijs * Aantal;
string Output = Totaal.ToString();
textBox3.Text = Output;
if (Totaal >= 100)
{
float korting = Totaal - 100;
float korting2 = korting / 100 * 15;
string Output2 = korting2.ToString();
textBox4.Text = Output2;
if (korting2 >= 10)
{
textBox4.BackColor = Color.LightGreen;
}
else
{
textBox4.BackColor = SystemColors.Control;
}
}
else
{
textBox4.Text = "0";
textBox4.BackColor = SystemColors.Control;
}
}
else
{
errorProvider2.SetError(textBox2, "Aantal plz!");
}
}
else
{
errorProvider1.SetError(textBox1, "Bedrag plz!");
if (float.TryParse(textBox2.Text, out Aantal))
{
}
else
{
errorProvider2.SetError(textBox2, "Aantal plz!");
}
}
}
private void BTNwissel_Click(object sender, EventArgs e)
{
//LL, LU, LR, LD.
Color c = LL.BackColor;
LL.BackColor = LU.BackColor;
LU.BackColor = LR.BackColor;
LR.BackColor = LD.BackColor;
LD.BackColor = c;
}
private void button3_Click(object sender, EventArgs e)
{
MessageBox.Show("zorg dat de kleuren linksom wisselen als je op de knop drukt.");
}
}
}