Tagged Questions
The regexbuddy tag has no wiki summary.
50
votes
17answers
11k views
Is there anything like RegexBuddy in the open source world?
I've used RegexBuddy several times and found it to be a really useful tool. Is there anything like it in the open source world, preferably something that is platform agnostic? (the fact that ...
7
votes
2answers
335 views
Regex named capture groups in Delphi XE
I have built a match pattern in RegexBuddy which behaves exactly as I expect. But I cannot transfer this to Delphi XE, at least when using the latest built in TRegEx or TPerlRegEx.
My real world code ...
5
votes
3answers
332 views
Character class subtraction, converting from Java syntax to RegexBuddy
Which regular expression engine does Java uses?
In a tool like RegexBuddy if I use
[a-z&&[^bc]]
that expression in Java is good but in RegexBuddy it has not been understood.
In fact it ...
4
votes
5answers
12k views
Regular expresion to match urls Java
I use RegexBuddy while working with regular expressions. From its library i copied the regular expression to match urls. I tested succesfully within regexbuddy. However, when I copied it as Javas ...
4
votes
3answers
167 views
Where does RegexBuddy store its working data between uses?
Ok, so I'm an idiot.
So I was working on a regex that took way to long to craft. After perfecting it, I upgraded my work machine with a blazing fast hard drive and realized that I never saved the ...
3
votes
1answer
41 views
Do any of the flavors of regex in Regex Buddy coincide with NSRegularExpression (ICU) regex?
NSRegularExpression says its flavor of regex is "ICU." I have RegexBuddy, which supports a bunch of different flavors, but none of them calls itself "ICU." But is one of them ICU under another name?
...
3
votes
2answers
736 views
Delphi - TPerlRegEx / RegExBuddy Problem
I've got a problem with RegEx and Delphi 2k9 (Win32). I get the following Error:
First chance exception at $7C812AFB. Exception class Exception with message 'TPerlRegEx.Compile() - Please specify a ...
2
votes
1answer
229 views
Regex - Unicode Properties Reference and Examples
I feel lost with the Regex Unicode Properties presented by RegexBuddy, I cannot distinguish between any of the Number properties and the Math symbol property only seems to match + but not -, *, /, ^ ...
2
votes
4answers
1k views
Why doesn't this Java regular expression work?
I need to create a regular expression that allows a string to contain any number of:
alphanumeric characters
spaces
(
)
&
.
No other characters are permitted. I used RegexBuddy to construct ...
1
vote
2answers
373 views
Unclosed character class near index nnn
I'm borrowing a rather complex regex from some PHP Textile implementations (open source, properly attributed) for a simple, not quite feature complete Java implementation, textile4j, that I'm porting ...
1
vote
1answer
273 views
how to highlight part of textarea html code
I want to achieve a python version web regexbuddy,and i encounter a problem,how to highlight match values in different color(switch between yellow and blue) in a textarea,there has a demo what exactly ...
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
1answer
34 views
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
0
votes
2answers
38 views
Regular expression question
In .NET 4.0 What does the reg ex,
"^ABC(: ([^=]+(?<! )=(?! )[^,]+(?<! )(,(?! )|$))+)?$"
matches to?
Some sample examples would be of much help.
I am quite surprised with following results.
...
0
votes
4answers
1k views
Regex in Python
Goal: Given a number (it may be very long and it is greater than 0), I'd like to get the five least meaningful digits dropping any 0 at the end of that number.
I tried to solve this with regex, ...
0
votes
5answers
525 views
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:
...
0
votes
2answers
2k views
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 ...