Skip to content

Instantly share code, notes, and snippets.

@wsky
Created August 13, 2012 02:46
Show Gist options
  • Save wsky/3336510 to your computer and use it in GitHub Desktop.
Save wsky/3336510 to your computer and use it in GitHub Desktop.
isMobileRegex
Regex isMobileRegex = new Regex(
@"(iemobile|iphone|ipod|android|nokia|sonyericsson|blackberry|samsung|sec\-|windows ce|motorola|mot\-|up.b|midp\-)"
,RegexOptions.IgnoreCase | RegexOptions.Compiled);
bool isMobileDevice = !string.IsNullOrEmpty(Request.UserAgent) && isMobileRegex.IsMatch(Request.UserAgent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment