Giter VIP home page Giter VIP logo

brackets-quickdocsregex's Introduction

QuickDocsRegEx

This extension provides a quick documentation for regular expressions inside your JS or PHP code.

How to use

You can use the Navigation menu (Navigation->Quick Docs) or Ctrl+K, while your cursor is on a regular expression, to open the inline documentation.

Example

##The documentation includes

  • description
  • cheatsheet
  • groups,square brackets
  • flags

License

Creative Commons v3.0 http://creativecommons.org/licenses/by/3.0/

brackets-quickdocsregex's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

brackets-quickdocsregex's Issues

PHP: Pattern is not recognized for delimiters other than /

In JavaScript you can use only / as a delimiter (or ' or " when you're using new Regex() constructor).

Example JS:
/Hello, (\w+)/ig.test('Hello, John');
new RegExp('Hello, (\w+)', 'ig').test('Hello, John');

In PHP, however, you can use / or # or % or + or ~, as well as pair of the following brackets: [], <>, {}, ().

Example PHP:
preg_match('/Hello, (\w+)/', 'Hello, John')
preg_match('#Hello, (\w+)#', 'Hello, John')
preg_match('[Hello, (\w+)]', 'Hello, John')

The problem is, only slash-char / is recognized by QuickDocs. If I would like my patterns to be recognizable I'm forced to change all # by /, which in some cases isn't quickly possible.

Can't seem to use it! Help!

This sounds, kinda silly, but I can't seem to use it! How do I access it from the navigation menu (which specific menu item?)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.