0
votes
0answers
5 views
can I do a regex search/replace in vs.net?
In vs.net, I want to search for all occurances of
[someWord]
in my .sql file, and replace it with
[SomeWord]
Is this possible? (notice the uppercasing of the first character i …
0
votes
2answers
11 views
modify sql file on using command line on unix
I have a .sql file that needs a little tweaking, speficially:
[xx_blah]
any pattern like the above needs to be changed to:
[Blah]
i.e. remove the xx_prefix and upper case the n …
0
votes
1answer
27 views
Regex: match SQL PRINT blocks with quoted text in it
Hi all,
I got the following text:
PRINT CONVERT(NVARCHAR,
CURRENT_TIMESTAMP, 111) + ' ' +
CONVERT(NVARCHAR, CURRENT_TIMESTAMP,
108)
+ ' -Test Mode : ' …
0
votes
4answers
48 views
How to find a string between two other strings with regex?
In a sort-of-duplicate, the answer was :
\[start\](.*?)\[end\]
but that yields the [start] and [end] tag too. How do you omit them?
E.g.: f("[somestartstring]result[someendst …
1
vote
3answers
54 views
Regex masters - ipv6..
So I need to match an ipv6 address which may or may not have a mask. Unfortunately I can't just use a library to parse the string.
The mask bit is easy enough, in this case:
(?:\ …
1
vote
4answers
67 views
Java: RegEx Problem (using the ‘.’ all character symbol)
I have some document stored as a large String. In the String I have some inline XML tags and I want to get out the words inbetween the tags. The documents may also contain HTML tag …
1
vote
5answers
63 views
GREP: How to search for a value but at the same time exclude some matches
I need a way to simplify this command:
grep 'SEARCHTERM' server.log | grep -v 'PHHIABFFH' | grep -v 'Stats'
It should find all the lines including SEARCHTERM but exclude if one …
3
votes
1answer
51 views
Double plusses in regex
I have seen several regular expressions that have two plusses in a row. What exactly does this mean? One or more of one or more of the pattern. If the pattern matches in the firs …
0
votes
3answers
26 views
How do I look for “ and ” in php using preg_match?
I've been using "/x{201C}/u" and "/x{201D}/u" to match them, but there's no result.
Am I doing something wrong??
1
vote
6answers
80 views
How can I get part of regex match as a variable in python?
In Perl it is possible to do something like this (I hope the syntax is right...):
$string =~ m/lalala(I want this part)lalala/;
$whatIWant = $1;
I want to do the same in Python …
1
vote
3answers
65 views
Determining if regexs cancel each other out
My task is to determine if a string should cause a command to be raised in my C# command processor, this being configurable at runtime.
I have two collections of regexes. For the …
1
vote
8answers
85 views
regular expression search, omit lines
Hi I want to search something in the file which looks similar to this :
Start Cycle
report 1
report 2
report 3
report 4
End Cycle
.... goes on and on..
I want to search for " …
0
votes
5answers
49 views
php only get the first occurrence of a word from an array.
Hello,
I have an array of tags that I'm pulling from a database, I am exporting the tags out into a tag cloud. I'm stuck on getting only the first instance of the word. For examp …
0
votes
2answers
22 views
Get position of all matches in group
Hi
Consider the following example:
$target = 'Xa,a,aX';
$pattern = '/X((a),?)*X/';
$matches = array();
preg_match_all($pattern,$target,$matches,PREG_OFFSET_CAPTURE|PREG_PATTERN_O …
0
votes
1answer
18 views
StackOverflowError with Checkstyle 4.4 RegExp check
Hello,
Background:
I'm using Checkstyle 4.4.2 with a RegExp checker module to detect when the file name in out java source headers do not match the file name of the class or inte …
