Popularity
3.7
Declining
Activity
0.0
Stable
5
3
0
Monthly Downloads: 7
Programming language: - - -
License: BSD 3-clause "New" or "Revised" License
string-similarity alternatives and similar packages
Based on the "string" category.
Alternatively, view string-similarity alternatives based on common mentions on social networks and blogs.
-
string-conversions
Simplifies dealing with different types for strings -
string-combinators
Polymorphic functions to build and combine stringlike values -
string-transform
simple and easy haskell string transform -
sscript
Formats Strings with subscript or superscript characters -
string-typelits
A Haskell library providing type level 'String's, with decidable equality -
string-random
Generate random character string from regular expression
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of string-similarity or a related project?
README
string-similarity
This is a collection of algorithms for finding the longest common substring in two documents.
The wider aim is to rate pairs (and eventually, larger sets) of documents for similarity, so that we can semi-automatically determine relationships in datasets. For the moment, just
longestSubstring ::(Eq a, Ord a) -> [a] -> [a] -> [a]
will do.