1
vote
Using Regular Expression on C++Builder FireMonkey Application
Andreano Lanusse
– Here another C++ example showing how to use the RTL regular expression on C++Builder FireMonkey Application. This example validate a string content based on four different regular expression, which are: Checks if the given text is a validate e-mail address Checks if the given text contains a valid IP address Checks if the given text is a valid date (dd-mm-yyyy) Checks if the given text is a valid date (mm-dd-yyyy) The follow code shows the four regular expressions used by this application. void __fastcall TForm1::lbRegExpChange(TObject *Sender) { switch (lbRegExp->ItemIndex) { case 0: ...
Statistics
|
Visits by Source |
User Actions |




