Testing whether a data structure has a particular shape or contains particular values in certain locations. Many functional languages provide pattern matching constructs. Most questions in this tag should also have the tag for the language you are programming in. Do not use this tag for regular ...
116
votes
9answers
92k views
Regular Expressions: Is there an AND operator?
Obviously, you can use |(pipe?), to represent OR, but can you match and as well?
Specifically, I'm wanting to match paragraphs of text that contain ALL of a certain phrase, but in no particular ...
21
votes
21answers
21k views
byte[] array pattern search
Anyone know a good and effective way to search/match for a byte pattern in an byte[] array and then return the positions.
e.g.
byte[] pattern = new byte[] {12,3,5,76,8,0,6,125};
byte[] toBeSearched ...
10
votes
6answers
5k views
Find common prefix of strings
I am having 4 strings:
"h:/a/b/c"
"h:/a/b/d"
"h:/a/b/e"
"h:/a/c"
I want to find the common prefix for those strings, i.e. "h:/a".
How to find that?
Usually I'd split the string with delimiter '/' ...
31
votes
4answers
22k views
How to use SIFT algorithm to compute how similiar two images are?
I have used the SIFT implementation of Andrea Vedaldi, to calculate the sift descriptors of two similar images (the second image is actually a zoomed in picture of the same object from a different ...
5
votes
2answers
724 views
Recognize Black patterns appearing on the four corners of the image ios using opencv or some other technique
I am stuck with a problem that is how to recognize some patterns in image.
the image is the image of paper which is pure white and the patterns are in four corners are in black.
I want to recognize ...
1
vote
3answers
156 views
How to get a single entity from an image?
I am using this image. I would like to have only the human part from this image. I don't want the background of this image.
How to do this? Any logic, links or the best and simple way?
here is the ...
53
votes
9answers
26k views
How can I use inverse or negative wildcards when pattern matching in a unix/linux shell?
Say I want to copy the contents of a directory excluding files and folders whose names contain the word 'Music'.
cp [exclude-matches] *Music* /target_directory
What should go in place of ...
21
votes
6answers
3k views
Scala: short form of pattern matching that returns Boolean
I found myself writing something like this quite often:
a match {
case `b` => // do stuff
case _ => // do nothing
}
Is there a shorter way to check if some value matches a pattern? I ...
12
votes
1answer
894 views
How is this case class match pattern working?
I've just seen this case class in the Scala actors package:
case class ! [a](ch: Channel[a], msg: a)
And in the JavaDoc it describes usage in the following form:
receive {
case Chan1 ! msg1 ...
13
votes
2answers
3k views
SQL Server LIKE containing bracket characters
Using SQL Server 2008. I have a table with the following column:
sampleData (nvarchar(max))
The value for this column in some of these rows are lists formatted as follows:
...
22
votes
3answers
14k views
Lua pattern matching vs. regular expressions
I'm currently learning lua. regarding pattern-matching in lua I found the following sentence in the lua documentation on lua.org:
Nevertheless, pattern matching in Lua is a powerful tool and ...
36
votes
8answers
2k views
What is 'Pattern Matching' in functional languages?
I'm reading about functional programming (in academic purpose) and I've noticed that Pattern Matching is mentioned in many articles as one of the core features of functional languages.
Can someone ...
13
votes
7answers
5k views
How can I detect common substrings in a list of strings
Given a set of strings, for example:
EFgreen
EFgrey
EntireS1
EntireS2
J27RedP1
J27GreenP1
J27RedP2
J27GreenP2
JournalP1Black
JournalP1Blue
JournalP1Green
JournalP1Red
JournalP2Black
JournalP2Blue
...
8
votes
5answers
2k views
Matching records based on Person Name
Are there any tools or methods that can be used for matching by a person's name between two different data sources?
The systems have no other common information and the names have been entered ...
14
votes
1answer
1k views
Why does pattern matching in Scala not work with variables?
Take the following function:
def fMatch(s: String) = {
s match {
case "a" => println("It was a")
case _ => println("It was something else")
}
}
This pattern matches ...
6
votes
4answers
486 views
Pattern to match only “children” of certain elements
I would like to be able to have a pattern that matches only expressions that are (alternately: are not) children of certain other elements.
For example, a pattern to match all Lists not within a ...
4
votes
8answers
993 views
how to recognize similar words with difference in spelling
I want to filter out duplicate customer names from a database.A single customer may have more that one entry to the system with the same name but with little difference in spelling. So here is an ...
2
votes
5answers
4k views
Pattern Match on a Array Key
I need to get the stock values out of this array:
Array (
[stock0] => 1
[stockdate0] =>
[stock1] => 3
[stockdate1] => apple
[stock2] => 2 [
stockdate2] =>
)
I need to ...
1
vote
5answers
626 views
Regex - nested patterns - within outer pattern but exclude inner pattern
I have a file with the content below.
<td> ${ dontReplaceMe } ReplaceMe ${dontReplaceMeEither} </td>
I want to match 'ReplaceMe' if it is in the td tag, but NOT if it is in the ${ ... ...
9
votes
11answers
3k views
Search for string allowing for one mismatch in any location of the string
I am working with DNA sequences of length 25 (see examples below). I have a list of 230,000 and need to look for each sequence in the entire genome (toxoplasma gondii parasite). I am not sure how ...
39
votes
2answers
2k views
What is scala's experimental virtual pattern matcher?
I've seen quite a few mentions recently of the new "virtualized" pattern matcher for scala. I missed the memo explaining what it actually was...
32
votes
3answers
6k views
Using comparison operators in Scala's pattern matching system
Is it possible to match on a comparison using the pattern matching system in Scala?
For example:
a match {
case 10 => println("ten")
case _ > 10 => println("greater than ten")
...
25
votes
5answers
15k views
Regular expression and pattern matching in Scala
I would like to be able to find a match between the first letter of a word, and one of the letters in a group such as "ABC". In pseudocode, this might look something like:
case Process(word) =>
...
11
votes
2answers
2k views
Pattern matching structural types in Scala
Why does this print wtf? Does pattern matching not work on structural types?
"hello" match {
case s: { def doesNotExist(i: Int, x: List[_]): Double } => println("wtf?")
case _ => ...
7
votes
1answer
4k views
Scala XML Pattern matching and Attributes
First of all: I'm at Scala 2.8
I have a slight issue while using pattern matching on XML elements. I know I can do something like this:
val myXML = <a><b>My Text</b></a>
...
2
votes
9answers
23k views
How to find a whole word in a String in java
I have a String that I have to parse for different keywords.
For example, I have the String:
"I will come and meet you at the 123woods"
And my keywords are
'123woods'
'woods'
I should report ...
8
votes
2answers
1k views
Warning about an unchecked type argument in this Scala pattern match?
This file:
object Test extends App {
val obj = List(1,2,3) : Object
val res = obj match {
case Seq(1,2,3) => "first"
case _ => "other"
}
println(res)
}
Gives ...
5
votes
6answers
4k views
how to check if given c++ string or char* contains only digits?
Or from the other way around find first non digit character.
Do the same functions apply for string and for char* ?
5
votes
7answers
1k views
Generic Ruby solution for SQLite3 “LIKE” or PostgreSQL “ILIKE”?
I am using SQLite3 for development and PostgreSQL for deployment. However, I am facing the following problem:
My simple search using SQLite3:
def self.search(search)
if search
find(:all, ...
4
votes
3answers
804 views
How does language detection work?
I have been wondering for some time how does Google translate(or maybe a hypothetical translator) detect language from the string entered in the "from" field. I have been thinking about this and only ...
1
vote
2answers
216 views
Extracting dollar amounts from existing sql data?
I have a field with that contains a mix of descriptions and dollar amounts. With TSQL, I would like to extract those dollar amounts, then insert them into a new field for the record.
-- UPDATE --
...
7
votes
2answers
4k views
How to match accented characters with a regex?
I am running Ruby on Rails 3.0.10 and Ruby 1.9.2. I am using the following Regex in order to match names:
NAME_REGEX = /^[\w\s'"\-_&@!?()\[\]-]*$/u
validates :name,
:presence => true,
...
35
votes
2answers
2k views
Pattern matching with conjunctions (PatternA AND PatternB)
Scala has a language feature to support disjunctions in pattern matching ('Pattern Alternatives'):
x match {
case _: String | _: Int =>
case _ =>
}
However, I often need to trigger ...
36
votes
3answers
2k views
How is pattern matching in Scala implemented at the bytecode level?
How is pattern matching in Scala implemented at the bytecode level?
Is it like a series of if (x instanceof Foo) constructs, or something else? What are its performance implications?
For example, ...
3
votes
2answers
2k views
How To Identify Email Belongs to Existing Thread or Conversation
We have an internal .NET case management application that automatically creates a new case from an email. I want to be able to identify other emails that are related to the original email so we can ...
6
votes
8answers
3k views
How to find similar patterns in lists/arrays of strings
I am looking for ways to find matching patterns in lists or arrays of strings, specifically in .NET, but algorithms or logic from other languages would be helpful.
Say I have 3 arrays (or in this ...
3
votes
2answers
2k views
Android: Filter intent for specific Uri pattern
I need my Android application to run a certain Activity in my app, responding to the following Uri data from the Intent that was sent out:
...
16
votes
3answers
1k views
Why don't Haskell list comprehensions cause an error when pattern match fails?
I'm trying to understand how Haskell list comprehensions work "under the hood" in regards to pattern matching. The following ghci output illustrates my point:
Prelude> let myList = [Just 1, Just ...
15
votes
3answers
2k views
Catching multiple exceptions at once in Scala
How to catch multiple exceptions at once in Scala? Is there a better way than in C#: Catch multiple Exceptions at once?
8
votes
2answers
2k views
matching a line that doesn't contain specific text with regular expressions
I want to do the following with regular expressions but not sure how to do it. I want it to match "one two" when one two is the beginning of the line unless the string contains "three" anywhere after ...
6
votes
2answers
1k views
Scala Get First and Last elements of List using Pattern Matching
I am doing a pattern matching on a list. Is there anyway I can access the first and last element of the list to compare?
I want to do something like..
case List(x, _*, y) if(x == y) => true
or
...
5
votes
2answers
3k views
notepad++ Inverse Regex replace (all but string)
I essentially wish to match every line that DOES NOT contain this string "Hello"
Example:
sdfsdoifdoskf
fdgokfdghodfkg
hello
fdojgohdfgjkdfg
gfobjobhkdfokgdfg
dofjkdsf hello dfgkdfogdfg
...
5
votes
1answer
12k views
Pattern Recognition using OpenCV
I am trying to detect a pattern on an object on a green field, made up of three colors (two pink markers to the sides and a blue one in the middle) arranged like a traffic light.
At first I tried ...
4
votes
3answers
276 views
Quickly compare a string against a Collection in Java
I am trying to calculate edit distances of a string against a collection to find the closest match. My current problem is that the collection is very large (about 25000 items), so I had to narrow down ...
1
vote
1answer
643 views
How does RouteBase.GetRouteData work or pointers for implementing pattern matching
I'm looking at implementing an option for defining specific URL patterns that my HttpModule is to ignore.
I'm wanting to be able to define "filters" such as:
/Admin/{*}
/Products/{*}/Search
Which ...
10
votes
2answers
643 views
Haskell Pattern Matching on the Empty Set
I'm changing some Haskell code from using lists to sets. I understand everything required, I think, but I'm not sure how to pattern match on sets. Lists have this nice literal syntax that seems hard ...
9
votes
2answers
974 views
What does `:_*` (colon underscore star) do in Scala?
I have such a piece of code from this question:
def addChild(n: Node, newChild: Node) = n match {
case Elem(prefix, label, attribs, scope, child @ _*) => Elem(prefix, label, attribs, scope, ...
7
votes
7answers
2k views
How to escape a string for use with the LIKE operator in SQL Server?
I am looking for something that works in SQL Server similar to the @ symbol in c# which causes a string to be taken as it's literal. Eg:
string text = "abcd\\efg";
Output of text = abcd\efg
string ...
6
votes
3answers
5k views
Pattern matching a String as Seq[Char]
In Scala it is possible formulate patterns based on the invididual characters of a string by treating it as a Seq[Char].
An example of this feature is mentioned in A Tour of Scala
This is the ...
5
votes
2answers
741 views
why does filter have to be defined for pattern matching in a for loop in scala?
To create a new class that can be used in a Scala for comprehension, it seems that all you have to do is define a map function:
scala> class C[T](items: T*) {
| def map[U](f: (T) => U) = ...
