miao-string 0.0.4

String matching lib


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

miao.string

String matching library for Dlang

Boost Software License - Version 1.0 - August 17th, 2003

Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:

The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Usage: <pre><code> import miao.string.knuthmorrispratt;

knuthmorrispratt("abc", "a"); // -> 0 knuthmorrispratt("abc", ""); // -> -1

const searcher = Knuthmorrispratt_seacher("ab");

searcher.search("abc"); // -> 0 searcher.search("ccab"); // -> 2

import miao.string.brute_force;

bruteforce("abc", "a"); // -> 0 bruteforce("abc", ""); // -> -1

const searcher = Bruteforcesearcher("ab");

searcher.search("abc"); // -> 0 searcher.search("ccab"); // -> 2

import miao.string.horspool; import miao.string.karp_rabin; </code></pre>

Authors:
  • Felix Wu
Dependencies:
none
Versions:
0.0.4 2014-Jul-27
0.0.3 2014-Jul-26
0.0.2 2014-Jul-26
0.0.1 2014-Jul-25
~master 2017-Mar-31
Show all 5 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 249 downloads total

Score:
0.8
Short URL:
miao-string.dub.pm