Tagged Questions

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 expression questions, use [tag:regex] instead.

learn more… | top users | synonyms

45
votes
8answers
33k 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 ...
27
votes
2answers
1k 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 ...
23
votes
1answer
512 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...
22
votes
8answers
1k 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 ...
20
votes
4answers
11k 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 ...
20
votes
2answers
1k views

How is pattern matching in Scala implemented at bytecode level?

How is pattern matching in Scala implemented at bytecode level? Is it like a series of if (x instanceof Foo) constructs, or something else? What are its performance implications? For example, given ...
20
votes
9answers
10k 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 ...
19
votes
1answer
169 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 ...
18
votes
8answers
1k 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 ...
17
votes
5answers
420 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 ...
16
votes
3answers
2k 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") ...
14
votes
3answers
460 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 ...
14
votes
2answers
218 views

Why does the =~ operator only sometimes have side effects?

I've noticed a side effect in Ruby/Oniguruma that is only present in 1 out of 4 seemingly equivalent statements. Why is the variable day defined in 009, but not in 003, 005 or 007? ...
14
votes
5answers
1k 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 ...
13
votes
3answers
615 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 ...
12
votes
5answers
208 views

Python pattern-matching. Match 'c[any number of consecutive a's, b's, or c's or b's, c's, or a's etc.]t'

Sorry about the title, I couldn't come up with a clean way to ask my question. In Python I would like to match an expression 'c[some stuff]t', where [some stuff] could be any number of consecutive ...
12
votes
2answers
828 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 ...
12
votes
2answers
5k 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 ...
12
votes
5answers
675 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 ...
11
votes
2answers
125 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 ...
11
votes
1answer
117 views

Strange pattern matching behaviour with AnyRef

def test1(a: Any) = a match { case x: AnyRef => "AnyRef" case _ => "None of the above" } def test2(a: Any) = a match { case x: Double if x > 2 => "Double > 2" case x: AnyRef ...
11
votes
2answers
248 views

Point-free pattern matching possible in Haskell?

Given: data TwoInts = TwoInts Int Int add'em :: TwoInts -> Int add'em (TwoInts a b) = a+b is it possible to write add'em without having to name a and b. Something like: add'em TwoInts = ...
11
votes
1answer
482 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 ...
11
votes
6answers
743 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 ...
11
votes
3answers
389 views

What does `~` mean in Haskell?

Right now I'm studying the mtl library, trying to do some MonadTransformers of my own. I was checking the Control.Monad.State.StateT declaration, and across all the code, I see this syntax: ...
11
votes
4answers
825 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 ...
11
votes
18answers
9k 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 ...
11
votes
8answers
4k 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 ...
10
votes
1answer
164 views

Mathematica's pattern matching poorly optimized?

I recently inquired about why PatternTest was causing a multitude of needless evaluations: PatternTest not optimized? Leonid replied that it is necessary for what seems to me as a rather questionable ...
10
votes
4answers
266 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 ...
10
votes
1answer
154 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 ...
10
votes
1answer
397 views

Why are variables not allowed in alternative patterns?

Often you have "symmetric" matches and want to write things like: def g(p:(Int,Int)) = p match { case (10,n) | (n,10) => println(n) case _ => println("nope") } This is not allowed, but if ...
10
votes
4answers
233 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 ...
10
votes
3answers
395 views

Implementing pattern matching in C#

In Scala, you can use pattern matching to produce a result depending on the type of the input. For instance: val title = content match { case blogPost: BlogPost => blogPost.blog.title + ": " + ...
10
votes
2answers
338 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 ...
10
votes
3answers
1k 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: ...
10
votes
2answers
1k 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 _ => ...
10
votes
3answers
4k 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 ...
9
votes
2answers
170 views

Scala: Case class unapply vs a manual implementation and type erasure

I'm trying to understand what Scala does with Case Classes that makes them somehow immune to type erasure warnings. Let's say we have the following, simple class structure. It's basically an Either: ...
9
votes
1answer
209 views

Why is Cases[] so slow here? Are there any tricks to speed it up?

While trying to paste images, I noticed that Cases[] is very slow. To reproduce, first copy a large image to the clipboard (just press Print Screen), then evaluate the following: In[33]:= ...
9
votes
3answers
233 views

Case classes, pattern matching and curried constructors in Scala

They don't seem to mix that well: abstract class A case class B (var a: Int)(var b: String) extends A case class C extends A The following will not work: B(1)("1") match { case B(a)(b) => ...
9
votes
3answers
197 views

In Scala, why is NaN not being picked up by pattern matching?

My method is as follows def myMethod(myDouble: Double): Double = myDouble match { case Double.NaN => ... case _ => ... } The IntelliJ debugger is showing NaN but this is not being ...
9
votes
2answers
191 views

Lossless hierarchical run length encoding

I want to summarize rather than compress in a similar manner to run length encoding but in a nested sense. For instance, I want : ABCBCABCBCDEEF to become: (2A(2BC))D(2E)F I am not concerned that ...
9
votes
3answers
219 views

How does | (pipe) in pattern matches work?

You can write: str match { case "foo" | "bar" => ... } At first glance it looks like | could be an extractor object, however: str match { case |("foo", "bar") => ... } does not work. (And ...
9
votes
4answers
477 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?
9
votes
4answers
213 views

Inferring templates from a collection of strings

I am indexing a set of websites which have a very large number of pages (tens of millions) that are generated from a small number of templates. I am looking for an algorithm to learn the templates ...
9
votes
3answers
258 views

How to pattern match a class with multiple argument lists?

Consider this class: class DateTime(year: Int, month: Int, day: Int)(hour: Int, minute: Int, second: Int) how would the unapply method look like, if I would like to match against something like: ...
9
votes
2answers
356 views

Crosswords in Mathematica using Pattern Matching

Suppose I select all 3 char words from the Mathematica dictionary: all3 = Characters /@ Select[DictionaryLookup[], StringLength[#] == 3 &]; and I want to form full scrabble-like sets, like: ...
9
votes
2answers
355 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: ...
9
votes
4answers
586 views

How does pattern matching work behind the scenes in F#?

I am completely new to F# (and functional programming in general) but I see pattern matching used everywhere in sample code. I am wondering for example how pattern matching actually works? For ...

1 2 3 4 5 21