このセクションでは、C++ プログラミング言語を使用して、指定された文字列データを整数に変換するさまざまな方法について説明します。特定のデータを別の型に変換する必要がある状況やインスタンスがいくつかあります。そのような状況の 1 つは、プログラミングで文字列を int データに変換することです。
たとえば、次のような数値文字列があります。 143 ' そしてそれを数値型に変換したいと考えています。文字列を整数に変換し、数値データを 143 として返す関数を使用する必要があります。ここでは、C++ プログラミング言語で文字列データを整数に変換するのに役立つ各メソッドを学習します。
C++ プログラミング言語で文字列データを整数に変換するさまざまな方法。
- stringstream クラスの使用
- stoi() 関数の使用
- atoi() 関数の使用
- sscanf()関数の使用
stringstream クラスの使用
の ストリングストリーム 数値文字列をint型に変換するためのクラスです。 stringstream クラスは、ストリーム オブジェクトを宣言して文字列をストリーム オブジェクトとして挿入し、ストリームに基づいて変換された整数データを抽出します。 stringstream クラスには「<>」演算子があり、(<>) 左演算子からデータをフェッチするために使用されます。
C++ プログラミング言語で文字列データを整数に変換する stringstream クラスを示すプログラムを作成してみましょう。
10/50
プログラム1.cpp
#include #include // use stringstream class using namespace std; int main() { string str1 = '143'; // declare a string int intdata; // declare integer variable /* use stringstream class to declare a stream object to insert a string and then fetch as integer type data. */ stringstream obj; obj <> intdata; // fetch integer type data cout << ' The string value is: ' << str1 << endl; cout << ' The representation of the string to integer type data is: ' << intdata << endl; return 0; }
出力
The string value is: 143 The representation of the string to integer type data is: 143
上記のプログラムでは、stringstream クラスを使用して obj オブジェクトを作成し、文字列データを整数に変換するのに役立ちます。次に、'<>' 演算子を使用して、変換された文字列を obj から数値データに抽出します。
sscanf()関数の使用
sscanf() 関数は、指定された文字列を整数などの指定されたデータ型に変換します。
jdbc
構文
sccanf ( str, %d, &intvar);
sscanf() 関数には、文字列 (str)、データ指定子 (%d)、および変換された文字列を格納する整数変数 (&intvar) を指定する 3 つの引数があります。
sscanf()関数のアルゴリズム
- sscanf() 関数は stringstream クラスに属しているため、このクラスをプログラムにインポートする必要があります。
- 定数文字列strを初期化します。
- 整数値に変換された文字列を保持する整数変数を作成します。
- 文字列変数を sscanf() 関数に渡し、sscanf() 関数を整数変数に代入して、関数によって生成された整数値を格納します。
- 整数値を出力します。
C++ で sscanf() 関数を使用して文字列を数値に変換する例を考えてみましょう。
プログラム2.cpp
#include #include // use stringstream class using namespace std; int main () { // declare the character strings const char *str1 = '555'; const char *str2 = '143'; const char *str3 = '101'; // declare the integer variables int numdata1; int numdata2; int numdata3; /* use sscanf() function and to pass the character string str1, and an integer variable to hold the string. */ sscanf (str1, '%d', &numdata1); cout <<' the value of character string is: ' << str1; cout ' representation to int numdata1 <<endl; sscanf (str2, '%d', &numdata2); <<' str2; numdata2 (str3, &numdata3); str3; numdata3 return 0; } < pre> <p> <strong>Output</strong> </p> <pre> The value of the character string is: 555 The representation of string to int value of numdata is: 555 The value of the character string is: 143 The representation of string to int value of numdata is: 143 The value of the character string is: 101 The representation of string to int value of numdata is: 101 </pre> <h3>Using the stoi() function</h3> <p>The stoi() function converts a string data to an integer type by passing the string as a parameter to return an integer value.</p> <p> <strong>Syntax</strong> </p> <pre> stoi(str); </pre> <p>The stoi() function contains an str argument. The str string is passed inside the stoi() function to convert string data into an integer value.</p> <p> <strong>Algorithm of the stoi() function</strong> </p> <ol class="points"> <li>Initialize the string variable to store string values.</li> <li>After that, it creates an integer type variable that stores the conversion of string into integer type data using the stoi() function.</li> <li>Print the integer variable value.</li> </ol> <p>Let's create a program to use the stoi() function to convert the string value into the integer type in the C++ programming language.</p> <p> <strong>Program3.cpp</strong> </p> <pre> #include #include using namespace std; int main () { string strdata1 = '108'; string strdata2 = '56.78'; string strdata3 = '578 Welcome'; // use stoi() function to pass string as arguments int intdata1 = stoi (strdata1); int intdata2 = stoi (strdata2); int intdata3 = stoi (strdata3); // print the converted values cout << ' The conversion of string to an integer using stoi('' << strdata1 << '') is ' << intdata1 <<endl; cout << ' the conversion of string to an integer using stoi(\'' strdata2 '\') is intdata2 <<endl; strdata3 intdata3 return 0; } < pre> <p> <strong>Output</strong> </p> <pre> The conversion of string to an integer using stoi('108') is 108 The conversion of string to an integer using stoi('56.78') is 56 The conversion of string to an integer using stoi('578 Welcome') is 578 </pre> <h3>Using the atoi() function</h3> <p>An atoi() function is used to convert the character string into an integer value. An atoi() function passes the character type string to return the integer data.</p> <p> <strong>Syntax</strong> </p> <pre> atoi (const char *str); </pre> <p> <strong>Algorithm of the atoi() function</strong> </p> <ol class="points"> <li>Initialize a pointer-type character array to store a string.</li> <li>After that, it creates an integer type variable that stores the conversion of string into integer type data using the atoi() function.</li> <li>Print the integer variable value.</li> </ol> <p>Let's create a program to use the atoi() function to convert the string value into the integer type in the C++ programming language.</p> <p> <strong>Program4.cpp</strong> </p> <pre> #include #include using namespace std; int main () { // declare a constant character array of string const char *strdata1 = '256'; const char *strdata2 = '16.18'; const char *strdata3 = '1088 Good Bye'; // use atoi() function to pass character type array as arguments int intdata1 = atoi (strdata1); int intdata2 = atoi (strdata2); int intdata3 = atoi (strdata3); // print the converted values cout << ' The conversion of string to an integer value using atoi('' << strdata1 << '') is ' << intdata1 <<endl; cout << ' the conversion of string to an integer value using atoi(\'' strdata2 '\') is intdata2 <<endl; strdata3 intdata3 return 0; } < pre> <p> <strong>Output</strong> </p> <pre> The conversion of string to an integer value using atoi('256') is 256 The conversion of string to an integer value using atoi('16.18') is 16 The conversion of string to an integer value using atoi('1088 Good Bye') is 1088 </pre> <hr></endl;></pre></endl;></pre></'>
stoi() 関数の使用
stoi() 関数は、文字列をパラメータとして渡して整数値を返すことにより、文字列データを整数型に変換します。
構文
stoi(str);
stoi() 関数には str 引数が含まれています。 str 文字列は、文字列データを整数値に変換するために stoi() 関数内に渡されます。
Javaの擬似コード
stoi() 関数のアルゴリズム
- 文字列値を格納するために文字列変数を初期化します。
- その後、stoi()関数を使用して文字列を整数型データに変換した結果を格納する整数型変数を作成します。
- 整数変数の値を出力します。
stoi() 関数を使用して文字列値を C++ プログラミング言語の整数型に変換するプログラムを作成してみましょう。
プログラム3.cpp
#include #include using namespace std; int main () { string strdata1 = '108'; string strdata2 = '56.78'; string strdata3 = '578 Welcome'; // use stoi() function to pass string as arguments int intdata1 = stoi (strdata1); int intdata2 = stoi (strdata2); int intdata3 = stoi (strdata3); // print the converted values cout << ' The conversion of string to an integer using stoi('' << strdata1 << '') is ' << intdata1 <<endl; cout << \' the conversion of string to an integer using stoi(\'\' strdata2 \'\') is intdata2 <<endl; strdata3 intdata3 return 0; } < pre> <p> <strong>Output</strong> </p> <pre> The conversion of string to an integer using stoi('108') is 108 The conversion of string to an integer using stoi('56.78') is 56 The conversion of string to an integer using stoi('578 Welcome') is 578 </pre> <h3>Using the atoi() function</h3> <p>An atoi() function is used to convert the character string into an integer value. An atoi() function passes the character type string to return the integer data.</p> <p> <strong>Syntax</strong> </p> <pre> atoi (const char *str); </pre> <p> <strong>Algorithm of the atoi() function</strong> </p> <ol class="points"> <li>Initialize a pointer-type character array to store a string.</li> <li>After that, it creates an integer type variable that stores the conversion of string into integer type data using the atoi() function.</li> <li>Print the integer variable value.</li> </ol> <p>Let's create a program to use the atoi() function to convert the string value into the integer type in the C++ programming language.</p> <p> <strong>Program4.cpp</strong> </p> <pre> #include #include using namespace std; int main () { // declare a constant character array of string const char *strdata1 = '256'; const char *strdata2 = '16.18'; const char *strdata3 = '1088 Good Bye'; // use atoi() function to pass character type array as arguments int intdata1 = atoi (strdata1); int intdata2 = atoi (strdata2); int intdata3 = atoi (strdata3); // print the converted values cout << ' The conversion of string to an integer value using atoi('' << strdata1 << '') is ' << intdata1 <<endl; cout << \' the conversion of string to an integer value using atoi(\'\' strdata2 \'\') is intdata2 <<endl; strdata3 intdata3 return 0; } < pre> <p> <strong>Output</strong> </p> <pre> The conversion of string to an integer value using atoi('256') is 256 The conversion of string to an integer value using atoi('16.18') is 16 The conversion of string to an integer value using atoi('1088 Good Bye') is 1088 </pre> <hr></endl;></pre></endl;>
atoi() 関数の使用
文字列を整数値に変換するには、atoi()関数を使用します。 atoi() 関数は、文字型 string を渡して整数データを返します。
構文
atoi (const char *str);
atoi() 関数のアルゴリズム
- 文字列を格納するポインタ型の文字配列を初期化します。
- その後、atoi()関数を使用して文字列を整数型データに変換した結果を格納する整数型変数を作成します。
- 整数変数の値を出力します。
atoi() 関数を使用して文字列値を C++ プログラミング言語の整数型に変換するプログラムを作成してみましょう。
プログラム4.cpp
#include #include using namespace std; int main () { // declare a constant character array of string const char *strdata1 = '256'; const char *strdata2 = '16.18'; const char *strdata3 = '1088 Good Bye'; // use atoi() function to pass character type array as arguments int intdata1 = atoi (strdata1); int intdata2 = atoi (strdata2); int intdata3 = atoi (strdata3); // print the converted values cout << ' The conversion of string to an integer value using atoi('' << strdata1 << '') is ' << intdata1 <<endl; cout << \' the conversion of string to an integer value using atoi(\'\' strdata2 \'\') is intdata2 <<endl; strdata3 intdata3 return 0; } < pre> <p> <strong>Output</strong> </p> <pre> The conversion of string to an integer value using atoi('256') is 256 The conversion of string to an integer value using atoi('16.18') is 16 The conversion of string to an integer value using atoi('1088 Good Bye') is 1088 </pre> <hr></endl;>
'>