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 ...
118
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 ...
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 ...
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...
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 ...
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, ...
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 ...
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")
...
32
votes
18answers
2k views
Finding matches between high quality and low quality, pixelated images - is it possible ? How?
I have a problem. My company has given me an awfully boring task. We have two databases of dialog boxes. One of these databases contains images of horrific quality, the other very high quality.
...
32
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 ...
26
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) =>
...
24
votes
5answers
2k views
Pattern Matching - Prolog Vs Haskell
This is not a homework question, rather an exam study guide question. What is the difference between pattern matching in Prolog Vs Haskell?
I've done some research and reading up on the theories ...
24
votes
1answer
475 views
Haskell GHC: what is the time complexity of a pattern match with N constructors?
Let's say we have the following Haskell:
data T = T0 | T1 | T2 | ... | TN
toInt :: T -> Int
toInt t = case t of
T0 -> 0
T1 -> 1
T2 -> 2
...
TN -> N
What algorithm is used ...
23
votes
3answers
12k views
Match multiple cases classes in scala
I'm doing matching against some case classes and would like to handle two of the cases in the same way. Something like this:
abstract class Foo
case class A extends Foo
case class B(s:String) extends ...
23
votes
1answer
412 views
+50
How to set up reftex-view-crossref-extra in Emacs ?
The expression reftex-view-crossref-extra sets additional patterns for reftex-view-crossref function. It consists of Macro Regexp, Search Regexp and Highlight Group(as illustrated below):
...
22
votes
8answers
2k views
Explaining pattern matching vs switch
I have been trying to explain the difference between switch statements and pattern matching(F#) to a couple of people but I haven't really been able to explain it well..most of the time they just look ...
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 ...
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 ...
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 ...
20
votes
6answers
744 views
Why are if expressions frowned upon in Haskell?
This has been a question I've been wondering for a while. if statements are staples in most programming languages (at least then ones I've worked with), but in Haskell it seems like it is quite ...
19
votes
3answers
626 views
Why is this a useful warning in Haskell when pattern matching? “Defined but not used”
In defining multiple pattern matches for a function, for instance as follows:
1: takeTree 0 tree = Leaf
2: takeTree levels (Leaf) = Leaf
3: takeTree ...
19
votes
5answers
2k views
Haskell pattern matching - what is it?
What is pattern matching in Haskell and how is it related to guarded equations?
I've tried looking for a simple explanation, but I haven't found one.
EDIT:
Someone tagged as homework. I don't go to ...
19
votes
1answer
265 views
Is it possible to use irrefutable tilde (`~`) patterns in lambda expressions?
GHC gives me a parse error on input \~ if I try to put a tilde on the pattern of a lambda expression like I can do with named functions
let step = \~(x,s) -> run (f x) s -- Parse Error
let step ...
18
votes
4answers
342 views
Is there any fundamental limitations that stops Scala from implementing pattern matching over functions?
In languages like SML, Erlang and in buch of others we may define functions like this:
fun reverse [] = []
| reverse x :: xs = reverse xs @ [x];
I know we can write analog in Scala like this ...
18
votes
5answers
238 views
Is there a known O(nm)-time/O(1)-space algorithm for POSIX filename matching (fnmatch)?
Edit: WHOOPS! Big admission, I screwed up the definition of the ? in fnmatch pattern syntax and seem to have proposed (and possibly solved) a much harder problem where it behaves like .? in regular ...
17
votes
9answers
8k views
Pattern matching of lists in Python
I want to do some pattern matching on lists in Python. For example, in Haskell, I can do something like the following:
fun (head : rest) = ...
So when I pass in a list, head will be the first ...
17
votes
5answers
541 views
Is “List” specially handled in Haskell's pattern matching?
I am a newbie in Haskell and hope this question is not silly.
I have seen so much example that when I am having a list, I am able to match and bind "composition element" of the list to individual ...
17
votes
3answers
723 views
pattern matching in D
I recently stumbled over the D programming Language and i really like it. You can programm really high-level while having full Hardware access like in C.
coming from a rather functional background ...
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?
15
votes
3answers
1k views
How can I pattern match on a range in Scala?
In Ruby I can write this:
case n
when 0...5 then "less than five"
when 5...10 then "less than ten"
else "a lot"
end
How do I do this in Scala?
Edit: preferably I'd like to do it more elegantly ...
15
votes
2answers
269 views
Why GADT/existential data constructors cannot be used in lazy patterns?
Today, I got a compiler error when trying to use a lazy pattern when matching on an existential GADT constructor:
An existential or GADT data constructor cannot be used inside a lazy (~) pattern
...
15
votes
2answers
2k views
Pattern matching on the beginning of a string in f#
I am trying to match the beginning of strings in f#. Not sure if I have to treat them as a list of characters or what. Any suggestions would be appreciated.
Here is a psuedo code version of what I ...
14
votes
3answers
3k views
Multiple assignment of non-tuples in scala
Just to clarify, when I say multiple assigment, parallel assignment, destructuring bind I mean the following pattern matching gem
scala> val (x,y) = Tuple2("one",1)
x: java.lang.String = one
y: ...
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 ...
14
votes
4answers
1k views
pattern matching - implementation
hello
Im wondering how pattern matching is usually implemented. for example in Erlang do you think its implemented at the byte-code level(there's a bytecode for it so that its done efficiently) or is ...
14
votes
2answers
305 views
Haskell pattern match “diverge” and ⊥
I'm trying to understand the Haskell 2010 Report section 3.17.2 "Informal Semantics of Pattern Matching". Most of it, relating to a pattern match succeeding or failing seems straightforward, however ...
14
votes
1answer
1k views
Haskell (n+1) in pattern matching
I was doing the 99 Problems in Haskell when I encountered a solution to Problem 19 that I did not fully understand.
The task is to write a rotate function that works like this
*Main> rotate ...
14
votes
2answers
2k views
Pattern matching and infinite streams
So, I'm working to teach myself Scala, and one of the things I've been playing with is the Stream class. I tried to use a naïve translation of the classic Haskell version of Dijkstra's solution to the ...
14
votes
1answer
159 views
F# - Why can a variable be bound twice in a pattern?
Usually, F# does not allow pattern variables to occur twice in the same pattern. But in the following code, F# does not complain - is this a bug?
type foo = { A: int }
let test (x, {A = x}) = x
let ...
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:
...
13
votes
5answers
992 views
Is it recommended to always have exhaustive pattern matches in Haskell, even for “impossible” cases?
Is it recommended to always have exhaustive pattern matches in Haskell, even for "impossible" cases?
For example, in the following code, I am pattern matching on the "accumulator" of a foldr. I am in ...
13
votes
2answers
6k views
Ocaml: Match expression inside another one?
I'm currently working on a small project with Ocaml; a simple mathematical expression simplifier. I'm supposed to find certain patterns inside an expression, and simplify them so the number of ...
13
votes
6answers
2k views
Pattern Matching - Find reference object in second image [OpenCV?]
I have a reference b/w image that contains a reference object (a coin for example). The object is marked by the user, that is the region of interest.
Now I want to analyze other images and find the ...
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
...
12
votes
4answers
592 views
What's the syntax for single-line pattern matching?
word 0 = "Zero"
word 1 = "One"
word 2 = "Two"
How would I condense a pattern-matching function like this one into a single line?
I tried word 0 = "Zero" word 1 = "One" word 2 = "Two", but that ...
12
votes
3answers
2k views
Can a range be matched in Scala?
Is it possible to match a range of values in Scala?
For example:
val t = 5
val m = t match {
0 until 10 => true
_ => false
}
m would be true if t was between 0 and 10, but false ...
12
votes
4answers
749 views
Is there a cleaner way to pattern-match in Scala anonymous functions?
I find myself writing code like the following:
val b = a map (entry =>
entry match {
case ((x,y), u) => ((y,x), u)
}
)
I would like to write it differently, if only this ...
12
votes
2answers
258 views
Is it possible to export constructors for pattern matching, but not for construction, in Haskell Modules?
A vanilla data type in Haskell has zero or more constructors, each of which plays two roles.
In expressions, it supports introduction, its a function from zero or more arguments to the data type.
In ...
12
votes
1answer
895 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 ...
12
votes
2answers
2k views
How to pattern match large Scala case classes?
Consider the following Scala case class:
case class WideLoad(a: String, b: Int, c: Float, d: ActorRef, e: Date)
Pattern matching allows me to extract one field and discard others, like so:
someVal ...