Tagged Questions
0
votes
1answer
120 views
git-svn clone ignore-paths regular expression for folders
Am trying to do a git-svn clone to import all the files in SVN to GIT. The command that was given was this;
git svn clone --stdlayout --ignore-paths='(/cache|/tmps|/file/conf/setting.xml)' ...
0
votes
1answer
236 views
Regexp ignore certain parts in string
I need to use regex for a string to find matching results.
I need to find the (.+?) but would like to ignore everything where it says (*) right now:
$regex='#<span class="(*)"><a ...
1
vote
1answer
803 views
How is ignore-paths evaluated in git svn?
I have a simple repo structure like this:
trunk
code
othercode
doc
misc
branches
b1
code
othercode
doc
misc
b2
tags
t1
t2
I'm trying ...
1
vote
6answers
954 views
PHP: Regex match string not preceded by number or space
I've been trying to check if a string value starts with a numerical value or space and act accordingly, but it doesn't seem to be working. Here is my code:
private static function ParseGamertag( ...
0
votes
3answers
385 views
PHP: Regex match string not preceeded by a dollar sign
In my syntax highlighter, I use regex to parse different terms. Below is how I parse PHP classes:
foreach ( PHP::$Classes as $class )
$code = preg_replace( "/\b{$class}\b/", ...
1
vote
1answer
146 views
RegEx ignore text inside inner braces .net
I have requirement where I have to handle NOT. For example:
NOT( A AND B) will be converted to
NOT A OR NOT B
Now my problem is if there is a bracket inside it should just skip it as is.
For ...
0
votes
2answers
1k views
PHP: regex match phrase not containing specific word
I'm getting tired of looking around for a close enough example, time for some quick help! Here is my code:
preg_match_all( '#<li.*?>.*?</li>#s', $card_html, $activity );
I want to ...
2
votes
3answers
875 views
How do I ignore a regex match if a line has a special prefix?
I'm using this regex in Perl to match and replace the following expressions:
_HI2_
_HI_2
HI2_
_HI_2
if ($subject =~ m/_?HI2?_?|HI2?_?/) {
# Successful match
} else {
# Match attempt failed
...
8
votes
3answers
3k views
PHP: Regex to ignore escaped quotes within quotes
I looked through related questions before posting this and I couldn't modify any relevant answers to work with my method (not good at regex).
Basically, here are my existing lines:
$code = ...
0
votes
2answers
2k views
Regex - ignore certain characters in quotes
I tried searching for the answer to this, but I couldn't find anything too helpful in this situation. It's possible that I'm not searching the correct terms.
I'm having trouble with this regex. ...
4
votes
2answers
1k views
Mercurial/.hgignore - How do I ignore everything but the contents of a folder?
I have a NetBeans project and the Mercurial repository is in the project root. I would like it to ignore everything except the contents of the "src" and "test" folders, and .hgignore itself.
I'm not ...