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 ...

learn more… | top users | synonyms

0
votes
2answers
51 views

String datastructure supporting append, prepend and search operations

I need to build a text editor as my mini project, and I need to design a data structure or algorithm that supports following operation: Append : Append a character at the end of the String. Prepend ...
0
votes
0answers
31 views

Searching for binary range coincidence over many dimensions

I've clarified and simplified the question: I have data that looks like this: 011100111110100111 111111111111110010 111100001111000011 1D lanes of streams of data. Each row signifies the presence ...
1
vote
1answer
85 views

PostgreSQL Full Text Search and Trigram Confusion

I'm a little bit confused with the whole concept of PostgreSQL, full text search and Trigram. In my full text search queries, I'm using tsvectors, like so: SELECT * FROM articles WHERE search_vector ...
1
vote
2answers
71 views

Faster way to count number of matching 2nd elements between two list of tuples? - Python

Is there a faster way to count number of matching 2nd elements between two list of tuples? I have tuples as such and i was basically looping through them one tuple at a time: lstup1 = [('but', ...
0
votes
1answer
172 views

Java Pattern matching regex

I am doing a Pattern match the matcher.matches is coming as false, while the matcher.replaceAll actually finds the pattern and replaces it. Also the matcher.group(1) is returning an exception. @Test ...
1
vote
1answer
82 views

PHP preg_replace_callbacks with multiple patterns and multiple replacements [closed]

i need something like that: function highlight_code($str) { $search = array( '/regexp1/i', '/regexp2/i', '/regexp3/i' ); // Array of ...
0
votes
2answers
83 views

Java Pattern Matcher single or multiple with comma separated

I have a string, which I need to parse, I want to use pattern matcher need help with pattern. if string as below: sometext : test1,test2 output should be: test1 test2 if input string is : ...
1
vote
1answer
72 views

How to do pattern matching in scheme

Has anyone an idea how to make match in scheme with this two (?x lives-in ?city) (john lives-in new-york) ?i've tried using match-define but i didn't succeed
2
votes
2answers
162 views

Find simplest regular expression matching all given strings

Is there an algorithm that can produce a regular expression (maybe limited to a simplified grammar) from a set of strings such that the evaluation of all possible strings that match the regular ...
1
vote
3answers
88 views

Properly simulate “pattern” attribute with javascript

I'm trying to replicate the html5 pattern attribute with javascript but getting inconsistent results. The pattern is [a-zA-Z\. \']+ In Chrome, typing "asd 123" does not pass the test. Using ...
1
vote
1answer
63 views

How to save both matching and non-matching from grep

I use grep very often and am familiar with it's ability to return matching lines (by default) and non-matching lines (using the -v parameter). However, I want to be able to grep a file once to ...
2
votes
1answer
90 views

How to avoid explicit .isDefinedAt() call in pattern matching guard

I have some Akka-based actor system where multiple kind of actors is based on same template due to a fact that those actors only differ by a type of response value. For example: final case class ...
3
votes
3answers
106 views

split string by asterisk python

I have just started learning python 2 days ago, sorry if i have made obvious mistake strings: "brake break at * time" --> ["at","time"] "strang strange I felt very *" --> ["very",""] I am ...
1
vote
1answer
72 views

How to pattern match an element in a list in prolog?

In prolog how can you pattern match an element in a list? For example, if the list was like [1/2,1/3,2/5,3/6] then you can do something like one([..,1/A,..]) :- A=2. one([..,1/A,..]) :- A=3. ...
0
votes
2answers
29 views

Regex, optional match in url

I spend a couple of hour with no good result (maybe my mood is not helping about it). I am trying to build a regex to help me match both urls: /reservables/imagenes/4/editar/6 ...
3
votes
4answers
144 views

removing single letter words using java pattern matching

I want to eliminate all single letter words from a string in Java using pattern matching. I've coded as follows: String str = "P@"; //remove single char words and extra white spaces ...
0
votes
2answers
65 views

Finding all queries in a string in a source code using grep

I need to identify all queries in a php source code spread in many files under different directories. I though about using grep and MySQL keywords to identify them. There are two ways I can ...
1
vote
4answers
196 views

TSQL - Pattern Matching with Like

I am using SQL server 2012. I know I can use Like in a query to match a pattern in the database: ie SELECT * from PEOPLE where name LIKE 'STEVE%' would return all people called steve. But can ...
0
votes
3answers
48 views

List matching records in PostregSQL

I am working on search section where comparing input values with the stored records. Database having value like AB 09 C D 1234. I have explode (with space) input string to match with stored value but ...
0
votes
2answers
77 views

Pattern Match Failure in List in Haskell

I have one problem with pattern matching. When I give input to (x:y:ys) the list containing 3 elements, hugs complain that there is: pattern match failure. I guess that the problem is here ...
0
votes
1answer
120 views

Symfony2 routing optional parameter and format path/pattern

I would like to construct the following URI's using a single route pattern 1 hello/first.format 2 hello/first 3 hello/first/last.format 4 hello/first/last where first is required and last and ...
0
votes
1answer
91 views

parse error in maybe divide (Haskell)

Just a simple question that i cannot solve I was trying to get maybe_divide by the following code as assignment required, however terminal give me an error massage "test2.hs:1:112: Parse error in ...
0
votes
1answer
90 views

Why does this pattern matching does not work?

I have a generic class Book[T](index: Int, type: T), and an object foo of type Book. I'm not sure how to access the index and the type. I've tried: 1. foo match { case Book[T](index: Int, type:T) ...
6
votes
2answers
248 views

Match a tuple of unknown size in scala

Is there way to partially match a tuple without having to specify the size? For example, if I had a tuple val v = ( "Dr", "John","H", "Watson") I'd like to be able to do something like : v match ...
2
votes
1answer
75 views

Log parsing strategy using scala

So yesterday I had a logfile which had comma separated entries in a provided log.txt such as follows: entry1.1,entry1.2,entry1.3 entry2.1,entry2,2,entry2.3 .......................... So with much ...
1
vote
3answers
110 views

Detect if string contains javascript tags using jQuery/JavaScript

I am trying to create a very simplistic XSS detection system for a system I am currently developing. The system as it stands, allows users to submit posts with javascript embedded within the message. ...
2
votes
1answer
53 views

Pattern matching / extractor fails (due to Option being covariant)

I have a problem with custom extractors which appears when using f-bounded type parameters. The following works: trait Bar object Model { object Foo { def unapply[A <: Bar](foo: Foo[A]): ...
4
votes
9answers
471 views

Is there an inverse of grep: finding short lines in long patterns?

Where grep finds a short pattern from a pattern file in long lines of a look-up file, I need a tool that would allow me to extract short lines of a lookup file that can be found within a longer ...
0
votes
2answers
89 views

String manipulation in Lua with special characters

I would like to trim a string in Lua but I'm struggling I think because of the special characters in the string. E.g. str = "RG Ph 0%/15.00bpm" I would like to remove everything after and including ...
0
votes
3answers
164 views

Finding next element in List using pattern matching

Im playing with scala pattern matching, trying to make a findNext function: findNext(1,List(1,2,3)) == 2 findNext(2,List(1,2,3)) == 3 findNext(3,List(1,2,3)) == 1 def findNext(needle : Int, haystack ...
0
votes
2answers
89 views

Regex for a custom link (url) structure verification (preg_match, PHP)

I plan to allow reader to create links in a custom way. I think it will be easier for the ones who are not used to write html opening+closing tags. allowed & required custom linking structure ...
0
votes
0answers
202 views

powershell 2.0 finding index of first ocurrence of a string

I've google up and down and I can't seem to find a way to do this. Using Powershell 2.0 I want to parse a string to find the index of the first occurrence of a pattern in that string. Keep in mind ...
3
votes
5answers
129 views

Find Non-exhaustive pattern

Can i somehow see what pattern haskell tries to use? It works on the smaller example, but crashes on the larger one, and I have a hard time finding what case it could be. euler18 :: [[Integer]] ...
0
votes
1answer
166 views

Scala multiple type pattern matching

I'm wondering how can I use multiple type pattern matching. I have: abstract class MyAbstract case class MyFirst extends MyAbstract case class MySecond extends MyAbstract case class MyThird extends ...
0
votes
1answer
85 views

Simplest algorithm of measuring how similar of two short audio

The question is to look for any open source or simple implementation to measure how similar between two audios on the iOS application. Simply speaking, audio can be represented by 1-D vector, to ...
0
votes
2answers
75 views

what is the wrong of this regex pattern for nested {* *}?

I have this HTML document {* <h2 class="block_title bg0">ahmooooooooooooooooooooooooooooooooooooooooooodi</h2> <div class="block_content padding bg0">{welc_msg}</div> ...
1
vote
2answers
135 views

Regex pattern matching with a variable number of matching capturing groups

A text file should be parsed line by line, using Scala pattern matching and regular expressions. If a line starts with "names:\t" the subsequent tab-separated names should be provided as a Seq[String] ...
1
vote
4answers
90 views

Python pattern negative look behind

I am trying to figure out a regex pattern that matches a file path string in which a file called "cmd.exe" is NOT located in the "System32" folder OR any subfolder of it. The Pattern should match on ...
-5
votes
1answer
44 views

How to find (* not in html comment *) using java regexp? [closed]

I need to find whether a java script file is included in an html file or not. It should find <script type="text/javascript" src="app-all.js"> but not <!-- some other code <script ...
7
votes
3answers
131 views

Why can't I curry one of the patterns (but not the other) in my pattern matching?

I have I have a function with two arguments that I have to pattern match over. If I use currying on the first pattern it won't compile: drop' :: Int -> [a] -> [a] drop' 0 = id -- ghci: ...
1
vote
2answers
99 views

Count number of tokens matching a pattern in a string

A method to count number of tokens matching a pattern in a string. token is a "$" followed by "$$", there can be any number of characters between "$" and "$$". Eg: "$123$$, $ab$$, $qqwe123$$ input ...
0
votes
0answers
43 views

Split a file into equal number of segments by/at pattern [duplicate]

SO I have a very large file I would like to process by breaking down into smaller files of near equal size. The problem with this file is I cannot just split it by size or by line number, I have to ...
0
votes
2answers
22 views

Checking for pattern after date and time

There are log files in which there are patterns ----- Fri Mar 22 20:11:50 2013 statement 1 statement 2 statement 3 . . . No errors statement 10 statement 11 statement 12 I need to search present ...
1
vote
2answers
268 views

brute force string pattern matching average analysis

I have brute force string pattern searching algorithms as below: public static int brute(String text,String pattern) { int n = text.length(); // n is length of text. int m = pattern.length(); ...
0
votes
1answer
716 views

Pattern match count in excel (regex & vba)

I was posed with a problem yesterday and could find no solution anywhere, I was about to post a help request here when I figured out a way to meet the needs of my customer. It isn't pretty, it isn't ...
0
votes
0answers
66 views

How to develop a C# Jabber Auto-Responder

I am developing a C# Console Application which is a Jabber Client. The Jabber/XMPP part of the application works just fine. Now, I want to convert this into a bot which can respond automatically to ...
3
votes
2answers
86 views

Nested pattern matching in Ocaml

I want to write a function in Ocaml that given a list of quadruples and a quadruple (x,y,z,f), returns a list of that contains the tuples (x',y',z',g) such that x = x' or y=y' or z = z' (these are ...
1
vote
2answers
56 views

POSIX regex not compiling

I have this code for matching an IP address pattern. But it doesn't seem to work and I don't know why. It always prints on the terminal "No match" regex_t regex; int reti; char ...
4
votes
6answers
180 views

Oracle: Get length of partial string match

Imagine I have a table like Name ---- ABCDEFG ABChello world ABCDEfoo ABbar ABCDEF ABCDEFGHIJKLMNOP zzz qABCD ABCqqqGH ABCABC I want to do a query and figure out how many characters of each string ...
0
votes
1answer
106 views

Why are type synonyms necessary to define extractors for patten matching Java classes in Scala?

If there's an existing Java class pkg.Test, package pkg; public class Test { public int v; public Test(int v) { this.v = v; } } attempting to make an extractor by defining a scala companion ...

1 3 4 5 6 7 46