Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
9k views

What is the difference between Python's re.search and re.match?

What is the difference between the search() and match() functions in the Python re module? I've read the documentation, but I never seem to remember it. I keep having to look it up and re-learn it. ...
16
votes
8answers
10k views

How can I add * to the end of each line in Vim?

I tried the code unsuccessfully :%s/\n/*\n/g
13
votes
3answers
1k views

Game Center Finding a Match Programmatically

I just can't figure out how this works. What I am trying to do is let two players play a game if a third player joins it can instantly join the game, if the fourth and last player joins it can also ...
9
votes
8answers
3k views

Regex Group in Perl: how to capture elements into array from regex group that matches unknown number of/multiple/variable occurrences from a string?

In Perl, how can I use one regex grouping to capture more than one occurrence that matches it, into several array elements? For example, for a string: var1=100 var2=90 var5=hello var3="a, b, c" ...
8
votes
3answers
153 views

Scala: Can you use “foo match { bar }” in an expression without parentheses?

Why are the parentheses needed here? Are there some precedence rules I should know? scala> 'x' match { case _ => 1 } + 1 <console>:1: error: ';' expected but identifier found. 'x' ...
8
votes
1answer
264 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 ...
8
votes
3answers
453 views

Case Insensitive Pattern Matching over String Lists

I'm trying to parse command line arguments in an F# application. I'm using pattern matching over parameters list to accomplish it. Something like: let rec parseCmdLnArgs = function | [] -> { ...
8
votes
3answers
11k views

Scala: match and parse an integer string?

I'm looking for a way to matching a string that may contain an integer value. If so, parse it. I'd like to write code similar to the following: def getValue(s: String): Int = s match { case ...
7
votes
1answer
191 views

Trying to build a regular expression to check pattern - 2

I was wondering if more checks could be added: [Previously answered question]( Trying to build a regular expression to check pattern). The above problem is brilliantly solved using this regex by ...
7
votes
4answers
8k views

javascript - check if string begins with something?

I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a class for an element ...
6
votes
3answers
155 views

VIM: how to highlight all previously deleted text after an undelete

I often use a command or script to delete text and after I do an undelete (u) I want to see what has been previously deleted by the command/script. Is it possible to highlight the previous deleted ...
6
votes
2answers
277 views

How to make python regex which matches multiple patterns to same index

Is it possible to get all overlapping matches, which starts from the same index, but are from different matching group? e.g. when I look for pattern "(A)|(AB)" from "ABC" regex should return ...
6
votes
1answer
120 views

Perl + smart matching doesn't work

Howdy! I've tried to match simple string with regular expression pattern but it doesn't print "ok". What's wrong with this piece of perl code? #!/usr/bin/env perl use strict; use warnings; use utf8; ...
6
votes
2answers
980 views

Python: list and string matching

I have following: temp = "aaaab123xyz@+" lists = ["abc", "123.35", "xyz", "AND+"] for list in lists if re.match(list, temp, re.I): print "The %s is within %s." % (list,temp) The re.match is ...
6
votes
4answers
6k views

c#: a method to count occurrences in a list

Is there a simple way to count the number of occurences of all elements of a list into that same list in C#? Something like this: using System; using System.IO; using System.Text.RegularExpressions; ...
5
votes
1answer
108 views

Match order with an extractor

I defined a custom extractor to get the last element of the list, as in http://stackoverflow.com/a/6697749/1092910: object :+ { def unapply[A](l: List[A]): Option[(List[A], A)] = { if ...
5
votes
2answers
230 views

Identify records in data frame A not contained in data frame B [closed]

This is my first time posting here, so please be kind ;-) EDIT My question was closed before I had a chance to make the changes suggested to me. So I'm trying to do a better job now, thanks for ...
5
votes
6answers
337 views

How to match an empty dictionary in Javascript?

From the node REPL thing, > d = {} {} > d === {} false > d == {} false Given I have an empty dictionary, how do I make sure it is an empty dictionary ?
5
votes
2answers
124 views

Using an overall WHERE clause when using UNIONS in sql

I am trying to return the MATCH() AGAINST() results against several tables using UNIONS, the only problem is some rows return a relevance of 0, I want to exclude these. After the unions is there a way ...
5
votes
3answers
9k views

Java SecurityException : signer information does not match

I recompiled my classes as usual, and suddenly got the following error message, why ? How to fix it ? "java.lang.SecurityException: class "Chinese_English_Dictionary"'s signer information does not ...
5
votes
3answers
209 views

What is fastest way to find number of matches between arrays?

Currently, I am testing every integer element against each other to find which ones match. The arrays do not contain duplicates within their own set. Also, the arrays are not always equal lengths. ...
5
votes
4answers
800 views

What's the shortest regex that can match non-zero floating point numbers with any number of decimal places?

What's the shortest regex that can match non-zero floating point numbers with any number of decimal places? It should accept numbers like -1 -5.9652 -7.00002 -0.8 -0.0500 -0.58000 0.01 0.000005 ...
5
votes
3answers
1k views

Scala match decomposition on infix operator

I'm trying to understand the implementation of Lists in Scala. In particular I'm trying to get my head around how you can write match expressions using an infix operator, for example: a match { ...
5
votes
2answers
622 views

Unable to count the number of matches in Vim

How can you count the number of matches in Vim? For instance, for the text <?
4
votes
4answers
134 views

Haskell: Number of matches between two lists of ints?

Say I have two lists of integers: 4 12 24 26 35 41 42 24 4 36 2 26 There are 3 matches between the two lists. How do I count the number of matches between any two list in Haskell? Thanks.
4
votes
3answers
122 views

Get the first and last visible element in a scrollable div

I have list of thumbs in a scrollable div, animated with next/prev button. Each click on "next "button should match the attribute of the first visible element. Each click on "prev" button should give ...
4
votes
1answer
66 views

Javascript Regular Expression Match

Try <script type="text/javascript"> var str=">1 people>9 people>1u people"; document.write(str.match(/>.*people/img).length); </script> at ...
4
votes
4answers
111 views

What is the most efficient way to match list items to lines in a large file in Python?

I have a large file (5Gb) called my_file. I have a list called my_list. What is the most efficient way to read each line in the file and, if an item from my_list matches an item from a line in ...
4
votes
1answer
81 views

Repeatedly match a perl expression for a specific/multiple number of times?

For the given string example: <a><b><c><d><e><f><g> I'd like to write an expression that will repeatedly match the first 5 <(?)> tokens and put them in ...
4
votes
2answers
118 views

Does the order of alternatives in a Scala match expression matter in terms of performance?

In particular with respect to pattern matching and case classes. Consider the following: abstract class Expr case class Var(name: String) extends Expr case class Number(num: Double) extends Expr case ...
4
votes
2answers
99 views

Is there a way to check if two object contain the same values in each of their variables in python?

How do I check if two instances of a class FooBar(object): __init__(self, param): self.param = param self.param_2 = self.function_2(param) self.param_3 = self.function_3() ...
4
votes
3answers
298 views

php program to find the my birthday where day name “Monday” for another 100 years

I was born in 1986-04-21, which is Monday. My next birthday with day name "Monday" is 1997-04-21 and so on. I wrote the program to find upto 100 year to find which year my birthday comes with ...
4
votes
3answers
573 views

Javascript Regexp loop all matches

I'm trying to do something similar with stack overflow's rich text editor. Given this text: [Text Example][1] [1][http://www.example.com] I want to loop each [string][int] that is found which I ...
4
votes
1answer
287 views

How to get a C# Windows Form DropDownList to behave like a browser drop down list?

I have a ComboBox in DropDownList mode. Say the contents are: 1 2 5 91 92 99 205 In the Forms application, I want to be able to focus on the control and type 205 and have it select 205. Instead, I ...
4
votes
2answers
556 views

Javascript error: “val.match is not a function”

I used the match function for regular expression. the code is if(val.match(/^s+$/) || val == "" ) but the java script display the "val.match is not function" i cant find what is the problem ...
4
votes
2answers
201 views

Optimize SQL Query

I have problem with optimize this query: SET @SEARCH = "dokumentalne"; SELECT SQL_NO_CACHE `AA`.`version` AS `Version` , `AA`.`contents` AS `Contents` , `AA`.`idarticle` AS `AdressInSQL` , `AA` ...
4
votes
4answers
322 views

MySQL Match Fulltext

Im' trying to do a fulltext search with mysql, to match a string. The problem is that it's returning odd results in the first place. For example, the string 'passat 2.0 tdi' : AND MATCH ...
4
votes
2answers
1k views

How to get a button's height to match another element's height?

I want to put a button next to a EditText and I want their heights to match. For example, from the built in Android browser: The Go button is the same height as the EditText field. I know I ...
4
votes
1answer
1k views

How can I test if a filename matching a pattern exists in Perl?

Can I do something like this in Perl? Meaning pattern match on a file name and check whether it exists. if(-e "*.file") { <Do something> } I know the longer solution of ...
4
votes
5answers
375 views

Replacing strings with regex in JavaScript

A particular regular expression is bugging me right now. I simply want to replace the range=100 in a string like var string = ...
4
votes
2answers
2k views

How to pass a variable into regex in jQuery/Javascript

Is there a way to pass a variable into a regex in jQuery/Javascript? I wanna do something like: var variable_regex = "bar"; var some_string = "foobar"; some_string.match(/variable_regex/); In ...
3
votes
6answers
141 views

Perl, comparing scalar to array (with regex?)

I'll be brief so I don't waste your time; Simple problem, i have an array of say, hundreds of dogs my @dogs = qw(Shepard Lab Dalmation Husky Chow Pitbull ...) and i want to compare it to a single ...
3
votes
7answers
94 views

Regex: how to match an word that doesn't end with a specific character

I would like to match the whole "word"—one that starts with a number character and that may include special characters but does not end with a '%'. Match these: 112 (whole numbers) 10-12 ...
3
votes
3answers
56 views

How check value viewable types

I have something like this: def my_check[T](arg: T) = arg match { case x: GenTraversable[_] = ... // XX case x: Array[_] ... I want to merge some cases expression: In the code above marked ...
3
votes
5answers
138 views

perl regex match closest

I'm trying to match from the last item closet to a final word. For instance, closest b to dog "abcbdog" Should be "bdog" But instead I'm getting "bcbdog" How can I only match from the last ...
3
votes
1answer
66 views

Is there an add-on that allows me to create groups that are matched according to one or more criteria?

I want to compare two groups of subjects (0,1) but want to make sure that the differences I observe aren't due to a third variable, which is significantly different between the two groups. Group 1 is ...
3
votes
2answers
94 views

Regular Expression matching a certain number in the text

I have a file that looks like this: STUFF STUFF **X** **Y** STUFF STUFF J6 INT-00113G 227.905 5.994 180 SOIC8 J3 INT-00113G 227.905 -203.244 180 SOIC8 U13 ...
3
votes
2answers
198 views

How to match a string which is start with something, and get the rest?

I can write the code like this: str match { case s if s.startsWith("!!!") => s.stripPrefix("!!!") case _ => } But I want to know is there any better solutions. For example: str match ...
3
votes
3answers
391 views

Implementing ifTrue, ifFalse, ifSome, ifNone, etc. in Scala to avoid if(…) and simple pattern matching

In Scala, I have progressively lost my Java/C habit of thinking in a control-flow oriented way, and got used to go ahead and get the object I'm interested in first, and then usually apply something ...
3
votes
2answers
127 views

javascript match() error

I'm trying to count # of lines of a pre element and I'm using this: var numlines = $('#mypreelement').text().match(/\n\r?/g).length + 1; it works, but in some situations I get a error Error: ...

1 2 3 4 5 11