summaryrefslogtreecommitdiffhomepage
path: root/pcre.html.markdown
Commit message (Collapse)AuthorAgeLines
* [pcre/en] fix domain name => protocol (#4902)Th3G33k2024-04-19-1/+1
|
* Remove leading and trailing empty lines in code blocksBoris Verkhovskiy2024-04-06-2/+0
|
* Tweak markdown to properly render htmlcarl2019-09-20-8/+17
|
* [pcre] Fix examples, closes #3226Chris547212018-10-23-15/+7
|
* Add an example of trap command (#1826)Sachin Divekar2016-06-26-0/+82
* Begin writing document for PCRE Started writing learnxinyminutes document for PCRE to cover general purpose regular expressions. Added introduction and a couple of details. * Change introductory example for regex The old example was incorrect. It's replaced with a simple one. * Add some more introductory text * Add first example * Added more example and a table for proper formatting * Add few more examples * Formatting * Improve example * Edit description of character classes * Add a way to test regex Add https://regex101.com/ web application to test the regex provided in example. * Add example of trap command trap is a very important command to intercept a fatal signal, perform cleanup, and then exit gracefully. It needs an entry in this document. Here a simple and most common example of using trap command i.e. cleanup upon receiving signal is added. * Revert "Add example of trap command" * Add an example of trap command `trap` is a very important command to intercept a fatal signal, perform cleanup, and then exit gracefully. It needs an entry in this document. Here a simple and most common example of using `trap` command i.e. cleanup upon receiving signal is added.