DelphiDigest
65 subscribers
226 photos
13 videos
11 files
1.09K links
Download Telegram
Learn IP validation regex code in Delphi!

RegEx in Delphi Development :

  if TRegEx.IsMatch(EditIP.Text,
'^[0-9]{1,3}\.{0-9}{1,3}\.{0-9}{1,3}\.{0-9}{1,3}$') then
ShowMessage('IPv4 address is valid.')
else
ShowMessage('IPv4 address is not valid.');
Learn email address validation regex code in Delphi!

  if TRegEx.IsMatch(EditEMailAddress.Text,
'^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$', [roIgnoreCase]) then
ShowMessage('Email address is valid.')
else
ShowMessage('Email address is not valid.');
Intraweb Bootstrap 3 Framework for Delphi lets you create responsive desktop and mobile applications with IntraWeb using the Bootstrap 3 library. Source available for free on Github. Take a look!
Check out this extensive tutorial on App Tethering in a series of blog posts by developer Malcolm Groves. In this post find out about Sharing Transient Resources. Take a look!