Top "String-matching" questions

String matching is the problem of finding occurrences of one string (“pattern”, “needle”) in another (“text”, “haystack”).

wrong parameter count for strstr()

I have built a nav menu in wordpres using a posts GUID, and post title, I am taking only part …

php regex string string-matching strstr
Using Rabin-Karp to search for multiple patterns in a string

According to the wikipedia entry on Rabin-Karp string matching algorithm, it can be used to look for several different patterns …

algorithm hash language-agnostic string-matching rabin-karp
How to compare and convert emoji characters in C#

I am trying to figure out how to check if a string contains a specfic emoji. For example, look at …

c# unicode string-matching emoji double-byte
Log4Net StringMatchFilter is not filtering anything

I'm logging all SQL generated by nHibernate because we have a weird issue. This alone generates huge logs so I'm …

.net nhibernate log4net filtering string-matching
R: Replacing foreign characters in a string

I'm dealing with a large amount of data, mostly names with non-English characters. My goal is to match these names …

r string-matching
Efficient string matching in Apache Spark

Using an OCR tool I extracted texts from screenshots (about 1-5 sentences each). However, when manually verifying the extracted text, …

python apache-spark pyspark string-matching fuzzy-search
Dart: RegExp by example

I'm trying to get my Dart web app to: (1) determine if a particular string matches a given regex, and (2) if …

regex dart string-matching