I need to check if my String contains Alphabet Characters. Because it needs to just contains a number.
String^ buffer;
buffer = this->textBox4->Text;
I need to check if my String contains Alphabet Characters. Because it needs to just contains a number.
String^ buffer;
buffer = this->textBox4->Text;
Look at the regular expressions provided by the .NET Framework, such as ^\d+^
. (Assuming whole numbers only).