2
votes
Getting svn diff to show C++ function during commit
Is there a simple regex to match a C++ function? No.
Is there a (complex) regex to match a C++. Maybe or could be possible to write one.
But I would say regular expressions neither …
3
votes
java regex line
I suggest using
private static Pattern line = Pattern.compile(".*");
scanner.useDelimiter("[\\r\\n]+"); // Insert right before the for-loop
System.out.println(scanner.next(line)) …
2
votes
Powershell: Leave item alone if regex doesn’t match
$_ -replace ([regex]::Matches($_ , "\d{4,}")), "DATESTAMP"
Means in $_ replace every finding of ([regex]::Matches($_ , "\d{4,}")) with "DATESTAMP" …
8
votes
4
votes
Percent symbol in codeigniter URI
Put the "-" at the end of the string otherwise it gets interpreted as range. The % is already in the allowed character list as you can see.
$config['permitted_uri_c …
1
vote
Get text between symbols, regex?
This regex always gives you the last URI segment in the first capturing group as long as the URI is terminated with a slash
.+/(.+)/
if the slash sometimes misses …
0
votes
Extract snippets with PCRE regex
Regarding the problem that only one word is matched:
From the PHP PCRE documentation
Wh …
0
votes
How to replace forwardslashes with backslashes in a string in lisp for emacs?
Don't use emacs but I guess it supports some form of specifying unicode via \x
e.g. maybe this works
(replace-regexp-in-string "\x005c" "\x005f" path))
or …
2
votes
How can I convert a Perl regex with named groups to Python?
I found the offending part but can't figure out what exactly is wrong without wrapping my mind around the whole thing.
r = re.compile(r'^(?:(?P<name>.*?)[\/\s._-]*)?(?P<ope …
3
votes
How to pull the server name from a UNC
This should do the trick.
^//([^/]+).*
The server name is in the first capturing group
…
0
votes
Restricting text box inputs to a given regexp using jQuery
I advise you to let the user tpye whatever he wants, then do a validation on submit of the form. (Of course you must still check on the server-side as he could easily disable or alter the javascrip …
3
votes
Java: How to replace all occurances of a character if and only if followed by some other character
yourstring.replaceAll("\\.([A-Z])",". $1")
…
2
votes
Is there some way of escaping characters in Groovy regexes?
You shouldn't need four of them. Two should be enough. e.g. to match anything with a backslash in it.
def file = /C:\geo\file.txt/
assert file =~ /.*\\.*/
…
0
votes
3
votes
Regular Expressions in java
This matches what you requested. String which exactly start witch "change" followed by a single space. Then a word followed by an equal sign followed by another word. Then end of string …
