Skip to content

johannburkard/StringSearch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

StringSearch

High-performance pattern matching algorithms in Java

The Java language lacks fast string searching algorithms. StringSearch provides implementations of the Boyer-Moore and the Shift-Or (bit-parallel) algorithms. These algorithms are easily five to ten times faster than the naïve implementation found in java.lang.String.

Download

Download StringSearch 2.2 (JAR)

Download StringSearch 2.2 (Source JAR)

Or get StringSearch through Maven:

	<dependencies>
		<dependency>
			<groupId>com.eaio.stringsearch</groupId>
			<artifactId>stringsearch</artifactId>
			<version>2.2</version>
		</dependency>
	</dependencies>
…
	<repositories>
		<repository>
			<id>eaio.com</id>
			<url>http://repo.eaio.com/maven2</url>
		</repository>
	</repositories>

StringSearch 1.2

StringSearch 1.2, which includes a native library and a different selection of algorithms, is still available.

Download StringSearch 1.2 (ZIP)

Download StringSearch 1.2 (TAR.GZ)

Documentation

This library contains implementations of the following pattern matching algorithms:

License

StringSearch is licensed under the MIT License (OSI certified).

Other Resources

Analytics

About

High-perfor­mance pattern matching algo­rithms in Java

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages