Questions tagged [regexbuddy]

RegexBuddy is a commercial Regular Expression IDE made by Just Great Software. It supports development and debugging of regular expressions for most major programming languages and applications.

RegexBuddy is a commercial Regular Expression IDE made by Just Great Software. It supports development and debugging of regular expressions for most major programming languages and applications.

27 questions
1
vote
1 answer

Regex not Triggering VBA

This is my regex: Dim vbRegX As Object, vbRegXMatch As Object Set vbRegX = CreateObject("vbscript.regexp") With vbRegX .Global = True .IgnoreCase = True .Pattern = "^[a-zA-Z0-9_-]{1,20}$" End With code that…
Doug Coats
  • 6,255
  • 9
  • 27
  • 49
1
vote
1 answer

Match words beginning with an asterisk and the following word using regex look ahead function

I need a regex expression which will match words that begin with an asterisk and the word that follows them. It will match eismoud tempor and dolore magna in the example below: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do…
0
votes
2 answers

Regular expression question

In .NET 4.0 What does the reg ex, "^ABC(: ([^=]+(?
dattebayo
  • 2,012
  • 4
  • 30
  • 40
0
votes
5 answers

preg_match works in regexbuddy, not in php

Ok so I have this regex that I created and it works fine in RegexBuddy but not when I load it into php. Below is an example of it. Using RegexBuddy I can get it to works with this: \[code\](.*)\[/code\] And checking the dot matches newline, I added…
Joshua Fricke
  • 381
  • 3
  • 14
0
votes
2 answers

RegEx Whitespace Vs. Eclipse

I´m trying to make a regular expression to match a whitespace and so far I´m doing this: Powered[\s]*[bB]y.*MyBB I know it should work because I've tried it with Regex Buddy and it says it does but when I try to run it with Eclipse it marks an…
Tsundoku
  • 9,104
  • 29
  • 93
  • 127
0
votes
0 answers

Regexbuddy get matches without to much linefeeds

I'm using regexbuddy to get all matches from a text input 1. This works fine except the issue that to much newlines 2 are added to output of the matches (because every single match is listed in a new line, see detailed output 3). Is there an option…
Semjon Mössinger
  • 1,798
  • 3
  • 22
  • 32
0
votes
1 answer

Debug Regular expression using RegexBuddy

I want to understand how regex parser work so i started debug a string using Regex buddy also from http://www.regular-expressions.info/engine.html Here author explains how Regex engine parser works using following regular expression /cat/ and…
Cody
  • 2,480
  • 5
  • 31
  • 62
0
votes
5 answers

Select all from the beginning of the line until a left square bracket

I need a regex that will select everything from the beginning of the line until the first left square bracket. In the example below it would match Lorem, consectetur-adipisicing and labore et Lorem [ipsum] dolor sit amet, consectetur-adipisicing…
0
votes
1 answer

Free Regex tool that can generate Java code?

While there are free alternatives to Regex Buddy when it comes to testing regular expressions, are there any alternatives regarding Java code generation? Thanks for any hint :-)
stefan.at.kotlin
  • 15,347
  • 38
  • 147
  • 270
0
votes
1 answer

How to match xPath using RegexBuddy?

The expression /bookstore/book[1]/title should return Harry Potter but instead I get "The regular expression does not match..." Here is my XML that I am testing:
Ura
  • 2,173
  • 3
  • 24
  • 41
-1
votes
1 answer

Precedence Level in object oriented Programming(not Operator Precedence)

In which order is the precedence of the following Constructor, Static Block and Non Static Block Thanks
Sarim
  • 1
  • 1
-1
votes
1 answer

combining two regex expressions

how can i extract the text from this html snippet... £86,950

2 bed mews house for sale

engineer41
  • 81
  • 4
  • 15

1
2