This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** 1. Regex Validation Email ***/ | |
String email = '[email protected]'; | |
bool isValidEmail = RegExp(r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+\.[a-zA-Z]+").hasMatch(email); | |
/*** 2. Hide Partial Email Address ***/ | |
String email = "[email protected]"; | |
int leftChar = 1; // num of left character to show | |
int rightChar = 2; // num of right character to show | |
int hideChar = email.split("@")[0].length - rightChar; | |
String result = email.replaceRange(leftChar, hideChar, '*' * (hideChar-leftChar)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/> | |
<title>Google Maps JavaScript API v3 Example: Directions Waypoints (LatLng)</title> | |
<script type="text/javascript" src="http://maps.google.com/maps/api/js?key="></script> | |
<script type="text/javascript"> | |
var directionDisplay; | |
var directionsService = new google.maps.DirectionsService(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
/** | |
* CodeIgniter Google Maps API V3 Class | |
* | |
* Displays a Google Map | |
* | |
* @package CodeIgniter | |
* @subpackage Libraries | |
* @category Libraries |