UNPKG

wildstring

Version:
853 lines (322 loc) 12.7 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>wildstring Namespace: wildstring</title> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/sunlight.default.css"> <link type="text/css" rel="stylesheet" href="styles/site.simplex.css"> </head> <body> <div class="navbar navbar-default navbar-fixed-top navbar-inverse"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand" href="index.html">wildstring</a> </div> <div class="navbar-collapse"> <ul class="nav navbar-nav"> <li class="dropdown"> <a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b class="caret"></b></a> <ul class="dropdown-menu "> <li><a href="wildstring.html">wildstring</a></li> </ul> </li> </ul> </div> </div> </div> <div class="container"> <div class="row"> <div class="col-md-8"> <div id="main"> <h1 class="page-title">Namespace: wildstring</h1> <section> <header> <h2> wildstring </h2> </header> <article> <div class="container-overview"> <dl class="details"> <h5 class="subsection-title">Properties:</h5> <dl> <table class="props table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>wildcard</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last"><p>the wildcard to use in your strings, defaults to '*'</p></td> </tr> <tr> <td class="name"><code>caseSensitive</code></td> <td class="type"> <span class="param-type">boolean</span> </td> <td class="description last"><p>whether matches should care about case, defaults to true</p></td> </tr> </tbody> </table> </dl> <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt> <dd class="tag-source"> <ul class="dummy"> <li> <a href="F__Git_wildstring_wildstring.js.html">F:/Git/wildstring/wildstring.js</a>, <a href="F__Git_wildstring_wildstring.js.html#sunlight-1-line-3">line 3</a> </li> </ul> </dd> </dl> </div> <h3 class="subsection-title">Methods</h3> <dl> <hr> <dt> <h4 class="name" id=".checkRollbackStrings"><span class="type-signature">&lt;private, static> </span>checkRollbackStrings(rollbackStrings, patternSubstrings)</h4> </dt> <dd> <div class="description"> <p>When a match doesn't continue to the end of the string, this function rolls back to try again with the rest of the string</p> </div> <h5>Parameters:</h5> <table class="params table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>rollbackStrings</code></td> <td class="type"> <span class="param-type">Array.&lt;string></span> </td> <td class="description last"><p>The list of substrings that appeared prior to the current match</p></td> </tr> <tr> <td class="name"><code>patternSubstrings</code></td> <td class="type"> <span class="param-type">Array.&lt;string></span> </td> <td class="description last"><p>The matching list of pattens that need to be matched before the current pattern</p></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt> <dd class="tag-source"> <ul class="dummy"> <li> <a href="F__Git_wildstring_wildstring.js.html">F:/Git/wildstring/wildstring.js</a>, <a href="F__Git_wildstring_wildstring.js.html#sunlight-1-line-19">line 19</a> </li> </ul> </dd> </dl> </dd> <hr> <dt> <h4 class="name" id=".match"><span class="type-signature">&lt;static> </span>match(pattern, string)</h4> </dt> <dd> <div class="description"> <p>Check if a string matches a pattern</p> </div> <h5>Parameters:</h5> <table class="params table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>pattern</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last"><p>The pattern to match using the configured wildcard</p></td> </tr> <tr> <td class="name"><code>string</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last"><p>The string to test for a match</p></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt> <dd class="tag-source"> <ul class="dummy"> <li> <a href="F__Git_wildstring_wildstring.js.html">F:/Git/wildstring/wildstring.js</a>, <a href="F__Git_wildstring_wildstring.js.html#sunlight-1-line-66">line 66</a> </li> </ul> </dd> </dl> </dd> <hr> <dt> <h4 class="name" id=".replace"><span class="type-signature">&lt;static> </span>replace(pattern, strings)</h4> </dt> <dd> <div class="description"> <p>Replace wildcards in a pattern with strings (string interpolation)</p> </div> <h5>Parameters:</h5> <table class="params table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>pattern</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="description last"><p>The start string, using wildcards as placeholders</p></td> </tr> <tr> <td class="name"><code>strings</code></td> <td class="type"> <span class="param-type">string</span> | <span class="param-type">Array.&lt;string></span> </td> <td class="description last"><p>The string or strings to replace the wildcards in the pattern.<br> If you pass a single string, it will replace all the wildcards with the string.<br> If you pass an array of strings, they will replace the wildcards in order from left to right.</p></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt> <dd class="tag-source"> <ul class="dummy"> <li> <a href="F__Git_wildstring_wildstring.js.html">F:/Git/wildstring/wildstring.js</a>, <a href="F__Git_wildstring_wildstring.js.html#sunlight-1-line-143">line 143</a> </li> </ul> </dd> </dl> <h5>Throws:</h5> <ul> <li> <div class="param-desc"> <p>The number of items in the strings array (if you pass an array) must match the number of wildcards in the pattern string.</p> </div> </li> <li> <div class="param-desc"> <p>You need to pass both parameters</p> </div> </li> <li> <div class="param-desc"> <p>You need to pass the right types</p> </div> </li> </ul> </dd> </dl> </article> </section> </div> </div> <div class="clearfix"></div> <div class="col-md-3"> <div id="toc" class="col-md-3"></div> </div> </div> </div> <footer> <span class="copyright"> DocStrap Copyright © 2012-2014 The contributors to the JSDoc3 and DocStrap projects. </span> <span class="jsdoc-message"> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.3</a> on Mon Apr 24th 2017 using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>. </span> </footer> <!--<script src="scripts/sunlight.js"></script>--> <script src="scripts/docstrap.lib.js"></script> <script src="scripts/bootstrap-dropdown.js"></script> <script src="scripts/toc.js"></script> <script> $( function () { $( "[id*='$']" ).each( function () { var $this = $( this ); $this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) ); } ); $( ".tutorial-section pre, .readme-section pre" ).each( function () { var $this = $( this ); var example = $this.find( "code" ); exampleText = example.html(); var lang = /{@lang (.*?)}/.exec( exampleText ); if ( lang && lang[1] ) { exampleText = exampleText.replace( lang[0], "" ); example.html( exampleText ); lang = lang[1]; } else { var langClassMatch = example.parent()[0].className.match(/lang\-(\S+)/); lang = langClassMatch ? langClassMatch[1] : "javascript"; } if ( lang ) { $this .addClass( "sunlight-highlight-" + lang ) .addClass( "linenums" ) .html( example.html() ); } } ); Sunlight.highlightAll( { lineNumbers : true, showMenu : true, enableDoclinks : true } ); $( "#toc" ).toc( { anchorName : function ( i, heading, prefix ) { var id = $( heading ).attr( "id" ); return id && id.replace(/\~/g, '-inner-').replace(/\./g, '-static-') || ( prefix + i ); }, selectors : "h1,h2,h3,h4", showAndHide : false, navbarOffset: 10, smoothScrolling: true } ); $( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" ); $( "#main span[id^='toc']" ).addClass( "toc-shim" ); $( '.dropdown-toggle' ).dropdown(); // $( ".tutorial-section pre, .readme-section pre" ).addClass( "sunlight-highlight-javascript" ).addClass( "linenums" ); $( "table" ).each( function () { var $this = $( this ); $this.addClass('table'); } ); } ); </script> <!--Navigation and Symbol Display--> <!--Google Analytics--> </body> </html>