کتابخانه glogg
200, OK
https://github.com/nickbnf/glogg icon

نرم افزاری بسیار سریع با قابلیت باز کردن فایل‌های چند گیگابایتی است که با استفاده از regular expressions به راحتی می‌توانید در آن جستجو کنید.  دانلود

glogg - the fast, smart log explorer

glogg is a multi-platform GUI application that helps browse and search through long and complex log files. It is designed with programmers and system administrators in mind and can be seen as a graphical, interactive combination of grep and less.

Main features

  • Runs on Unix-like systems, Windows and Mac thanks to Qt
  • Provides a second window showing the result of the current search
  • Reads UTF-8 and ISO-8859-1 files
  • Supports grep/egrep like regular expressions
  • Colorizes the log and search results
  • Displays a context view of where in the log the lines of interest are
  • Is fast and reads the file directly from disk, without loading it into memory
  • Is open source, released under the GPL
کتابخانه glogg
استفاده از Regular Expressions ها در #C
200, OK
https://www.c-sharpcorner.com/article/regular-expressions-in-C-Sharp/ icon

C# Regex class provides pattern matching funcions in form of regular expressions. The source code examples in this article show how to use Regular Expressions to validate different inputs. The code provides methods to validate Alphabet, AlphaNumeric, Integer, Postive Integers, Floating point numbers and so on 

استفاده از Regular Expressions ها در #C
اعتبارسنجی کد پستی با regx Pattern مخصوص کشور ایران
200, OK
https://stackoverflow.com/questions/48719799/iranian-postal-code-validation icon
 [Display(Name = "کد پستی")]    
[DataType(DataType.PostalCode)]
        [RegularExpression(pattern: @"\b(?!(\d)\1{3})[13-9]{4}[1346-9][013-9]{5}\b"),ErrorMessage ="کد پستی شما نادرست می‌باشد"]
        public string PostalCode { get; set; }

اعتبارسنجی کد پستی با regx Pattern مخصوص کشور ایران