Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
2k views

Rspec view testing with capybara and rails3

I really like the way RSpec is able to separate controller and view tests but have some problems with getting capybara matchers to work in a view test. What i basically try to achieve is sth like ...
6
votes
4answers
563 views

Java Split not working as expected

I am trying to use a simple split to break up the following string: 00-00000 My expression is: ^([0-9][0-9])(-)([0-9])([0-9])([0-9])([0-9])([0-9]) And my usage is: String s = "00-00000"; String ...
4
votes
2answers
224 views

Avoid overlapping regex matching in Java

For some reason this piece of Java code is giving me overlapping matches: Pattern pat = Pattern.compile("(" + leftContext + ")" + ".*" + "(" + rightContext + ")", Pattern.DOTALL); any way/option so ...
4
votes
6answers
468 views

Java Regular Expressions using Pattern and Matcher

my question is related to Regular Expressions in Java, and in particular, multiple matches for a given search pattern. All of the info i need to get is on 1 line and it contains an alias (e.g. SA) ...
4
votes
4answers
1k views

Java Matcher groups: Understanding The difference between “(?:X|Y)” and “(?:X)|(?:Y)”

Can anyone explain: Why the two patterns used below give different results? (answered below) Why the 2nd example gives a group count of 1 but says the start and end of group 1 is -1? public void ...
3
votes
2answers
186 views

Java recursive(?) repeated(?) deep(?) pattern matching

I'm trying to get ALL the substrings int the input string that match the given pattern. For example, given string : aaxxbbaxb pattern : a[a-z]{0,3}b (what i actually want to express is : all the ...
3
votes
5answers
116 views

How to terminate Matcher.find(), when its running too long?

Wondering about techniques for terminating long running regular expression matches (java matcher.find() method). Maybe subclassing Matcher and adding some logic to terminate after x number of ...
3
votes
2answers
508 views

Does an RSpec2 matcher for matching Hashes exist?

Note to future readers: think RSpec does not consider your Hashes equal? One might be an OrderedHash, but from the regular RSpec output you can't tell. This was the problem that prompted this post. ...
3
votes
5answers
2k views

During suite tests EasyMock says 0 matchers expected 1 recorded

So I've been using EasyMock's class extension for a while now. All of a sudden I'm getting this exception, but only when I run the entire test suite: java.lang.IllegalStateException: 0 matchers ...
3
votes
2answers
852 views

Multiple correct results with Hamcrest (is there a or-matcher?)

I am relatively new to matchers. I am toying around with hamcrest in combination with JUnit and I kinda like it. Is there a way, to state that one of multiple choices is correct? Something like ...
2
votes
3answers
56 views

Java Regexp Groups

I need a expression to extract some alternatives. The input is: asd11sdf33sdf55sdfg77sdf I need the 11 33 and 55 but not 77. I tried first: .*(((11)|(33)|(55)).*)+.* So I got only 55. But with ...
2
votes
6answers
94 views

Android regex always returning false

I am having issues with regex always returning false even though "http://developer.android.com/reference/java/util/regex/Pattern.html" states it shouldn't. I am entering all kinds of specials ...
2
votes
1answer
296 views

java regex match count

Let's say I have a file, and the file contains this: HelloxxxHelloxxxHello I compile a pattern to look for 'Hello' Pattern pattern = Pattern.compile("Hello"); Then I use an inputstream to read ...
2
votes
1answer
93 views

Using Matchers.any() to match a mock object

Foo mockFoo1 = mock(Foo.class); Foo mockFoo2 = mock(Foo.class); when(((Foo) any()).someMethod()).thenReturn("Hello"); In the above sample code, line 3 fails with a NullPointerException. Why so? My ...
2
votes
1answer
326 views

Matcher throwing IllegalStateException after matches

I'm having some strange issues with Matches, hoping someone could shed some light. According to Java docs: public boolean matches() ... If the match succeeds then more information can be ...
2
votes
1answer
114 views

Java Regular Expressions

I am trying to write something like this: Pattern p = Pattern.compile("Mar\\w"); Matcher m = p.matcher("Mary"); String result = m.replaceAll("\\w"); The result would ideally be "y". Any ideas?
2
votes
2answers
659 views

How to appendReplacement on a Matcher group instead of the whole pattern?

I am using a while(matcher.find()) to loop through all of the matches of a Pattern. For each instance or match of that pattern it finds, I want to replace matcher.group(3) with some new text. This ...
2
votes
2answers
216 views

matcher library for .net

Does any matcher libraries exist for .net? I am talking about a library like the hamcrest library for java...
1
vote
3answers
55 views

Convert Javascript regular expression to Java syntax

I am aware that regEx are common across languages...But I am having trouble in writing the Java syntax. I have a regular expression coded in JS as; if((/[a-zA-Z]/).test(str) && ...
1
vote
2answers
68 views

Hamcrest matcher for a String, where the String contains some random values

Is there a way to match the following string with any of the hamcrest matchers. ...
1
vote
3answers
121 views

Java - Reversing words in a string

This is our code: import java.io.File; import java.io.FileNotFoundException; import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; public class reverse { public ...
1
vote
1answer
79 views

get line number within matcher.find() using matcher.start()

I am using while(matcher.find()) to loop through and retrieve things from a file. I was wondering how would I get a line number from within this loop, if I knew the index of what I have found is at ...
1
vote
3answers
49 views

Why Matcher fails for Strings obtained or provide at Runtime in Java?

Hi I was recently developing a code where i had to extract the last 3 group of digits. So i used pattern to extract the data. But i failed to understand. CAN any one help me to understand it ?? ...
1
vote
0answers
74 views

Is there a PHP port of Java's Matcher class?

I'm porting YUI's CssCompressor, which has several Matcher uses, to PHP. For the sake of long-term maintenance I'd like to keep the PHP port as similar to the Java original as possible ...
1
vote
2answers
100 views

How to properly format unusual date string using Java SimpleDateFormat?

I've got date in following format: Pon Cze 07, 2011 9:42 pm It's Polish equivalent of English date: Mon Jun 07, 2011 9:42 pm I'm using following SimpleDateFormat matcher: SimpleDateFormat("EEE ...
1
vote
3answers
61 views

Java: Obtain matched string from an input

I am trying to obtain the string that my matcher is able to find using my provided expression. Something like this.. if(matcher.find()) System.out.println("Matched string is: " + ?); What would ...
1
vote
4answers
188 views

Java - Regex for Full Name

How can I validate regex for full name? I only want alphabets (no numericals) and only spaces for the regex. This is what I have done so far. Would you please help me fix the regex? Thank you very ...
1
vote
2answers
56 views

Java Matcher Digit method

How can Match Digit Integer from a Strings and return the Integer value.? e.g; String = "Color Red, Size 32 / Text text"; I would like to get from this string that "32" Integer value. many thanks ...
1
vote
3answers
34 views

Is there a way to peek() or go back using a Matcher

I'm trying to parse a text document containing region names and a list of coordinates that comprise the region. The text is not structured in an easily parse-able way, as it is written freeform like ...
1
vote
1answer
85 views

The usage of Pattern, Matcher, replace

I want to remove quotation marks of sentences. ex) Sackler Gallery postpones controversial “Shipwreck” show -> Sackler Gallery postpones controversial Shipwreck show I know that's possible using ...
1
vote
1answer
198 views

Getting value of $1 from matcher.replaceAll()

In my application I need get the link and break it if it is bigger than 10(example) chars. The problem is, if I send the whole text, for example: "this is my website www.stackoverflow.com" directly to ...
1
vote
2answers
403 views

How to extract parameters from a given url

In java i have: String params = "depCity=PAR&roomType=D&depCity=NYC"; I want to get values of depCity parameters (PAR,NYC). So I created regex: String regex = "depCity=([^&]+)"; ...
1
vote
1answer
163 views

failure_message_for_should doesn't work

I wrote myself a custom matcher, which itself works fine. But the failure_message_for_should doesn't work, I still get the default failure message. The ...should_not works! My matcher: ...
1
vote
2answers
234 views

java.util.regex.Matcher.replaceAll replacing without a match?

According to the javadoc: Replaces every subsequence of the input sequence that matches the pattern with the given replacement string. This seems to indicate that this call will not replace, unless ...
1
vote
1answer
461 views

Cucumber and custom RSpec matchers

I'm trying to write a custom RSpec matcher for cucumber. I require cucumber/rails/rspec in env.rb, but I still get "uninitialized constant Spec::Matchers" error. I'm using latest versions of Rspec, ...
1
vote
3answers
133 views

Regex - Group Value Replacement

I am not sure if this is possible to do, but I need a way to replace a value of a numbered group specified in the my regex expression with a string declared dynamically at runtime, once a match has ...
1
vote
4answers
142 views

java regular expression matching

What is the regular expression that can match the following 2 strings. Hi<Dog>Hi and <Dog> in a given text. Update: What regex will match this one? If you access the web site click ...
1
vote
3answers
2k views

java regex to exclude specific strings from a larger one

I have been banging my head against this for some time now: I want to capture all [a-z]+[0-9]? character sequences excluding strings such as sin|cos|tan etc. So having done my regex homework the ...
0
votes
0answers
17 views

Recursive SamePropertyValuesAs matcher in hamcrest

I am looking for a hamcrest matcher that behaves the same way as SamePropertyValuesAs but with the added twist that if a property is not a primitive, one of the standard Java classes (string, integer ...
0
votes
2answers
72 views

PatternSyntaxException: Illegal Repetition when using regex in Java

I don't know much regex, but I need to match a simple pattern. The following should return true, Pattern.matches("{\"user_id\" : [0-9]*}", inputLine) when inputLine is {"user_id" : 34} However, ...
0
votes
0answers
41 views

Calling a matcher function inside a try while reading continuous data using GNU

case SerialPortEvent.DATA_AVAILABLE: byte[] readBuffer = new byte[64]; try { // read data int numBytes = inputStream.read(readBuffer); ...
0
votes
1answer
40 views

Regular expression - Greedy quantifier

I am really struggling with this question: import java.util.regex.*; class Regex2 { public static void main(String[] args) { Pattern p = Pattern.compile(args[0]); Matcher ...
0
votes
1answer
80 views

NullPointerException when working with ArgumentMatcher

I've written the following JUnit test, which uses ArgumentMatchers. MyClass classUnderTest = new MyClass(); class AnyBooleanMatcher extends ArgumentMatcher<Boolean> { public ...
0
votes
2answers
31 views

java pattern for a url

I want to read from a file each line and edit only the lines that presents a url from a specific server... My code is like... Scanner ReadIsbn = new Scanner (new FileReader ("C:/Users/....")); ...
0
votes
1answer
36 views

Multiple Backreferences in Matcher.replaceAll()

Matcher.replaceAll() with a single backreference works great (i.e. Matcher.replaceAll("$2")). But I haven't been able to make it work with two or more backreferences, e.g. Matcher.replaceAll("$1$2"). ...
0
votes
1answer
53 views

Java Linked regex

I have to parse the following sample output. The requirements are there should be no text after Fabric management FPC state: i.e. it should be empty \s. The next part is a bit tricky and I am stuck ...
0
votes
0answers
85 views

eclipse cannot be resolve to a type error on java.util.regex.Matcher

I'm using eclipse to develop to android, and I bumped into a really annoying problem, i have this code: Pattern p =Pattern.compile("valami"); Matcher m =p.matcher("valami2"); m.find(); And eclipse ...
0
votes
0answers
69 views

Solr query pattern match not working [closed]

Possible Duplicate: Solr query is hanging server I have used Matcher.java to pattern match the query string in solr, it was working fine and for a particular key word ...
0
votes
2answers
53 views

Replace a character squence in java using regular expression

I have the following text "This ball isn?t yours, this one is John?s" i want to correct this to be "This ball isn't yours, this one is John's" How can i do this in java using Pattern and Matcher? ...
0
votes
2answers
125 views

Mockito match any class argument

Is there a way to match any class argument of the below sample routine? class A { public B method(Class<? extends A> a) {} } How can I always return a new B() regardless of which class ...

1 2