active questions tagged regex - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T08:06:35Z http://stackoverflow.com/feeds/tag/regex http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1935025/jquery-regular-expression-for-a-text-area 0 jquery regular expression for a text area Dave 2009-12-20T06:20:04Z 2009-12-20T06:32:36Z <p>I have a regular expression that returns us and canada zipcodes as follows.</p> <pre><code>((?&lt;US&gt;\d{5})|(?&lt;Can&gt;\b[A-Z-[DFIOQUWZ]]\d[A-Z-[DFIOQU]]\ +\d[A-Z-[DFIOQU]]\d\b)) </code></pre> <p>I need to do this in java script or jquery. An application that can extract only these values. For example someone could simply paste a document into the textarea, click a button and have the valid US and Canada zipcodes extracted into an array for further processing. I have looked but cannot find something that fits this requirement.</p> <p>I tried Waldek Mastykarz's RegEx filter without any luck.</p> <pre><code>jQuery.extend( jQuery.expr[':'], { regex: function(a, i, m, r) { var r = new RegExp(m[3], 'i'); return r.test(jQuery(a).text()); } } ); $("#idTextArea:regex('\d{5}')") US only $("#idTextArea:regex('\\d{5}')") also tried this and host of others </code></pre> <p>where textarea input for idTextArea is the following.</p> <pre><code>"12345 ahdh 23, 6789, 65432" </code></pre> <p>I want to return only 12345 and 65432 into an array.</p> <p>I am totally stumped, any help is greatly appreciated.</p> http://stackoverflow.com/questions/1919096/mass-string-replace-in-python 7 Mass string replace in python? Mike Trpcic 2009-12-17T02:17:38Z 2009-12-20T04:18:03Z <p>Say I have a string that looks like this:</p> <pre><code>str = "The &amp;yquick &amp;cbrown &amp;bfox &amp;Yjumps over the &amp;ulazy dog" </code></pre> <p>You'll notice a lot of locations in the string where there is an ampersand, followed by a character (such as "&amp;y" and "&amp;c"). I need to replace these characters with an appropriate value that I have in a dictionary, like so:</p> <pre><code>dict = {"&amp;y":"\033[0;30m", "&amp;c":"\033[0;31m", "&amp;b":"\033[0;32m", "&amp;Y":"\033[0;33m", "&amp;u":"\033[0;34m"} </code></pre> <p>What is the fastest way to do this? I could manually find all the ampersands, then loop through the dictionary to change them, but that seems slow. Doing a bunch of regex replaces seems slow as well (I will have a dictionary of about 30-40 pairs in my actual code).</p> <p>Any suggestions are appreciated, thanks.</p> <p><strong>Edit:</strong></p> <p>As has been pointed out in comments throught this question, my dictionary is defined before runtime, and will never change during the course of the applications life cycle. It is a list of ANSI escape sequences, and will have about 40 items in it. My average string length to compare against will be about 500 characters, but there will be ones that are up to 5000 characters (although, these will be rare). I am also using Python 2.6 currently.</p> <p><strong>Edit #2</strong> I accepted Tor Valamos answer as the correct one, as it not only gave a valid solution (although it wasn't the <em>best</em> solution), but took all others into account and did a tremendous amount of work to compare all of them. That answer is one of the best, most helpful answers I have ever come across on StackOverflow. Kudos to you.</p> http://stackoverflow.com/questions/1934500/arguments-with-regex 0 Arguments with regex M28 2009-12-19T23:49:44Z 2009-12-20T00:55:47Z <p>I would like to know how to split this string:<br /> command arg1 arg2 arg3<br /> In this array:<br /></p> <pre>[arg1,arg2,arg3]</pre> <p>BUT if the user types:<br /> command "arg1 still arg1" arg2<br /> The array will be:<br /></p> <pre>[arg1 still arg1, arg2]</pre> <p>Using PHP<br /></p> http://stackoverflow.com/questions/53497/regular-expression-that-matches-valid-ipv6-addresses 4 Regular expression that matches valid IPv6 addresses Readonly 2008-09-10T05:57:24Z 2009-12-20T00:35:24Z <p>I'm having trouble writing a regular expression that matches valid IPv6 addresses, including those in their compressed form (with "::" or leading zeros omitted from each byte pair). </p> <p>Can someone suggest a regular expression that would fulfill the requirement?</p> <p>I'm considering expanding each byte pair and matching the result with a simpler regex.</p> http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses 50 What is the best regular expression for validating email addresses? acrosman 2008-10-14T14:14:34Z 2009-12-20T00:34:27Z <p>Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is:</p> <pre><code>^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$ </code></pre> <p>I use this in several PHP programs, and it works most of the time. However, from time to time I get contacted by someone that is having trouble with a site that uses it, and I end up having to make some adjustment (most recently I realized that I wasn't allowing 4-character TLDs).</p> <p><em>What's the best regular expression you have or have seen for validating emails?</em></p> <p>I've seen several solutions that use functions that use several shorter expressions, but I'd rather have one long complex expression in a simple function instead of several short expression in a more complex function.</p> http://stackoverflow.com/questions/1934051/regex-help-with-splitting-string 0 Regex help with splitting string Shoko 2009-12-19T20:32:53Z 2009-12-19T21:53:38Z <p>Hi,</p> <p>I need to be able to parse strings like these:</p> <pre><code>kev-+kvs+-one-+gdl+-greg-+kvs+-two-+gdl+-les-+kvs+-three -+gdl+-kev-+kvs+-one-+gdl+-greg-+kvs+-two-+gdl+-les-+kvs+-three kev-+kvs+-one-+gdl+-greg-+kvs+-two-+gdl+-les-+kvs+-three-+gdl+- </code></pre> <p>and in all three cases recognise these three groups:</p> <pre><code>kev-+kvs+-one greg-+kvs+-two les-+kvs+-three </code></pre> <p>In other words, it should use the string -+gdl+- to split the string.</p> <p>Assume that the sequence -+gdl+- will not occur except as a delimiter.</p> <p>How would I write regex for that?</p> http://stackoverflow.com/questions/1934062/split-a-string-into-certain-sections 1 split a string into certain sections sniperX 2009-12-19T20:37:18Z 2009-12-19T21:17:04Z <p>I need to create an easy way to split up some strings into formatted strings, for example, i have this string </p> <pre><code>":JStoker!stoker@jcs.me.uk PRIVMSG #channel :test message" </code></pre> <p>and i need to split that into:</p> <pre><code>string nickname = "JStoker" string ident = "stoker" string host = "jcs.me.uk" string channel = "#channel" string message = "test message" </code></pre> <p>and i need to do that in a way that if say i get a string like</p> <pre><code>":irc.testnet.com PRIVMSG #channel :test message" </code></pre> <p>for instance, i would need something like</p> <pre><code>string nickname = "irc.testnet.com" string ident = "" string host = "" string channel = "#channel" string message = "test message" </code></pre> <p>through the same thing, without throwing an error... and the string im using changes all the time, if your familiar this is raw IRC data.. i just need to know how to parse the data efficiantly.</p> <p>possibly could be done through Regex but im not sure. please help! ~ code examples please</p> http://stackoverflow.com/questions/1931742/beginner-extracting-subsets-of-data 1 BEGINNER: extracting subsets of data Tamir 2009-12-19T02:28:01Z 2009-12-19T21:12:20Z <p>Hello, this seems to be an easy task really, but being completely new to the world of programming, I have problems with the following task: I have a huge file which has the following format:</p> <pre><code>track type= wiggle name09 variableStep chrom=chr1 34 5 36 7 54 8 variableStep chrom=chr2 33 4 35 2 78 7 this is text with the word random in it# this we need to remove 82 4 88 6 variableStep chrom=chr3 78 5 89 4 56 7 </code></pre> <p>now what I would like as an out put is just</p> <p>one file called 1 and containing only</p> <pre><code>34 5 36 7 54 8 a second file called 2 33 4 35 2 78 7 82 4 88 6 a third file 78 5 89 4 56 7 </code></pre> <p>It would be great to get some help on this... If any knows how to do it in R... that would be even better</p> http://stackoverflow.com/questions/1845078/what-regular-expression-can-never-match 5 What regular expression can never match? Peter Hansen 2009-12-04T05:42:02Z 2009-12-19T20:51:11Z <p>Several times recently I've wanted to create a regular expression that will <strong>never</strong> match any input (even an empty string). Some of the apparently most obvious ways are either very crude, turn out to have undesirable behaviour... or just plain don't work!</p> <p>My provisional solution, which works fine for my particular case is simply a pattern of '\x00NEVERMATCHES\x00' (Python syntax for a string bracketed by two NUL bytes). It's self-documenting and, given the binary content, can never match my text-only input. What about the case where the input has no such restrictions?</p> <p>A reading of the Javascript and Python regular expression docs didn't bring anything simple to mind. What would be your approach to this? </p> <p>Solutions in any fairly generic regex syntax would be fine. My particular uses would be in Javascript and Python, but their regex syntaxes are pretty typical so I won't limit the answers unnecessarily at this point.</p> http://stackoverflow.com/questions/1933301/a-regex-that-will-never-match 1 A regex that will never match? [closed] Pekka 2009-12-19T16:12:01Z 2009-12-19T16:35:36Z <blockquote> <p><strong>Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1845078/what-regular-expression-can-never-match">What regular expression can never match?</a> </p> </blockquote> <p>I am customizing a dialog window in WYSIWYG Editor, CKEditor and want to strip off some functionality from a JavaScript file. </p> <p>There are some regex patterns that I want to keep defined (So I don't have to remove the references from the code) but I want to deactivate them. I thought the nicest way to achieve this would filling them with a pattern that can never apply.</p> <p>Of course I could just fill in some gibberish like /fdsaljkfasdklfjsa/ but out of curiosity, would somebody show me a regular expression that will never match? Sort of like <code>1==2</code> in a programming language?</p> http://stackoverflow.com/questions/1933190/check-for-the-pipe-symbol-with-regex 2 Check for the pipe symbol with Regex WebDevHobo 2009-12-19T15:29:25Z 2009-12-19T16:31:08Z <p>The pipe symbol | is used in Regular Expression as a sort of 'either' statement, far as I know. Either this, either that, or that, or that, etc...</p> <p>However, I wish to check a string with a regular expression, for the presence of this symbol. I've tried escaping it, but that doesn't seem to work.</p> <p>How do I do this, especially if I'm already checking for a number of symbols to be present, like #, &amp;, @, etc...</p> http://stackoverflow.com/questions/1932499/regular-expression-to-replace-string 0 Regular expression to replace string? hOtTiGeR 2009-12-19T09:53:43Z 2009-12-19T15:35:42Z <p>Hi,</p> <p>I'm trying to work out what regular expression I would need to take a value and replace spaces with a dash (in Javascript)?</p> <p>So say if I had North America, it would return me North-America ?</p> <p>Can I do something like var foo = bar.replace(' ', '-') ?</p> <p>Thanks</p> http://stackoverflow.com/questions/1894802/elegant-regular-expression-to-match-all-punctuations-but-not-in-emacs-lisp 1 Elegant regular expression to match all punctuations but not "'" in emacs Lisp? Yu Shen 2009-12-12T21:44:29Z 2009-12-19T14:39:47Z <p>I want to match all punctuations, but not "<code>'</code>", as in "<code>I'm</code>". For example, in the sentence below:</p> <pre><code>I'm a student, but I'm also working. ^not match ^match ^not ^match </code></pre> <p>I can use "<code>[[:punct:]]+</code>" to match all punctuations, but I'm having hard time to exclude "<code>'</code>" from the matching pattern.</p> <p>Of course, I could use someting like the following to express by enumeration, but it's much tedious, especially considering all those punctuations for Chinese as well. "<code>[,.?!]</code>"</p> <p>Please suggest a more elegant solution.</p> <p>Thanks in advance,</p> <p>Yu</p> http://stackoverflow.com/questions/1912334/replace-text-change-case-in-a-textbox-using-javascript 3 Replace text (change case) in a textbox using Javascript Pratyush 2009-12-16T04:41:45Z 2009-12-19T05:08:20Z <p>I am trying to build a sort of intelli-sense text input box, where as the user types, the 'and' is replaced by 'AND \n' (i.e. on each 'and', the 'and' is capitalized and user goes to new line).</p> <p>The Javascript I used for this is:</p> <pre> <code> function Validate() { document.getElementById("search").value = document.getElementById("search").value.replace("and","AND \n"); //new line for AND } </code> </pre> <p>The HTML part is like this: <code> <pre>&lt; textarea type="text" name="q" id="search" spellcheck="false" onkeyup='Validate();'>&lt; /textarea> </pre></code></p> <p>Though the above script works well on Firefox and Chrome, it sort-of misbehaves on Internet Explorer (brings the cursor to the end of the text on each 'KeyUp').<br /> <br /> Also the above code doesn't work for the other variants of 'and' like 'And', 'anD' or even 'AND' itself.</p> http://stackoverflow.com/questions/1931726/parsing-a-custom-string-generating-pattern-syntax 0 Parsing a custom string-generating-pattern syntax axada 2009-12-19T02:21:31Z 2009-12-19T03:46:24Z <p><strong><em>Background</em></strong>: I'm developing a custom regex-like syntax for URL filenames. It will work like this:</p> <ul> <li>User writes a pattern, something like <code>"[a-z][0-9]{0,2}"</code>, and passes it as input</li> <li>It is parsed by the program and translated into the set of permutations it represents i.e.<br> <code>'a'</code>, <code>'a0'</code>, <code>'a00'</code> ... <code>'z99'</code></li> </ul> <p>These patterns will vary in complexity, basically anything that could appear in a URL filename must be accommodated. The language is either Java or PHP, but examples in any language or abstract/conceptual help is more than welcome.</p> <p><strong><em>My questions are:</em></strong></p> <ol> <li>Where to start with the implementation of a "parser" for the above </li> </ol> <p>and less importantly,</p> <ol> <li>How to translate parsed complex patterns into strings programmatically</li> </ol> http://stackoverflow.com/questions/1931657/regex-error-when-handling-with-tags 0 Regex error when handling with tags M28 2009-12-19T01:40:31Z 2009-12-19T01:50:23Z <p>I am trying to convert this:</p> <pre><code>[img,src=http://www.ANYTHINGHERE.com/image.png,width=55px,height=105px]&lt;br /&gt; </code></pre> <p>To this:</p> <pre><code>&lt;img src="http://www.ANYTHINGHERE.com/image.png" width=55px height=105px&gt; </code></pre> <p>(without spaces)<br /> I am trying with this regex:</p> <pre><code>/(\[img[| |,|]?[(src=(.*)?)|(width=(.*)?)|(height=(.*)?)|,]*)(\])/&lt;br /&gt; </code></pre> <p>But it doesn't find the tag</p> http://stackoverflow.com/questions/1931434/shorter-regexp-for-mysql-query 0 Shorter REGEXP for MySQL query Vuk 2009-12-19T00:19:22Z 2009-12-19T00:46:34Z <p>I want to do a MySQL query to get the following effect:</p> <pre><code>table_column [varchar] ----------------------- 1|5|7 25 55|12 5 3&amp;5 5|11 </code></pre> <p>I want a reliable way to get all the values where 5 is the complete value. </p> <p>So, for example, if I do a REGEXP query for the number 5 on the upper table I would like to get <strong>all rows except</strong> the ones containing <strong>"25"</strong> and <strong>"55|12"</strong>.</p> <p>This is the best I've come up with so far:</p> <pre><code>[^[:digit:]]5[^[:digit:]] | [^[:digit:]]5 | 5[^[:digit:]] | ^5$ </code></pre> <p>is there a shorter way?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1097901/regular-expression-split-string-by-capital-letter-but-ignore-tla 0 Regular expression, split string by capital letter but ignore TLA Simon 2009-07-08T12:58:22Z 2009-12-19T00:34:52Z <p>I'm using the regex</p> <pre><code>System.Text.RegularExpressions.Regex.Replace(stringToSplit, "([A-Z])", " $1").Trim() </code></pre> <p>to split strings by capital letter, for example:</p> <p><strong>'MyNameIsSimon'</strong> becomes <strong>'My Name Is Simon'</strong></p> <p>I find this incredibly useful when working with enumerations. What I would like to do is change it slightly so that strings are only split if the <em>next</em> letter is a lowercase letter, for example:</p> <p><strong>'USAToday'</strong> would become <strong>'USA Today'</strong></p> <p>Can this be done?</p> <p><em>EDIT: Thanks to all for responding. I may not have entirely thought this through, in some cases 'A' and 'I' would need to be ignored but this is not possible (at least not in a meaningful way). In my case though the answers below do what I need. Thanks!</em></p> http://stackoverflow.com/questions/1930988/regular-expression-string-omit-question 0 Regular Expression String Omit Question Luke 2009-12-18T22:15:53Z 2009-12-19T00:11:44Z <p>I'm trying to parse some AS3 with the use of Regular Expressions. I cannot, for the life of me, figure out how to omit matches that are inside of string quotations. I need to match <strong><em>test</em></strong> in the variable name <strong><em>testString</em></strong>, but not the <strong><em>test</em></strong> thats between the quotations. I don't want to match anything that's part of any string's content.</p> <pre><code>var testString:String = "This is a test String"; </code></pre> http://stackoverflow.com/questions/1930487/will-a-z-ever-match-accented-characters-in-preg-pcre 5 Will [a-z] ever match accented characters in PREG/PCRE? Garrett Albright 2009-12-18T20:24:04Z 2009-12-18T22:45:35Z <p>I'm already aware that <code>\w</code> in PCRE (particularly PHP's implementation) can sometimes match some non-ASCII characters depending on the locale of the system, but what about <code>[a-z]</code>?</p> <p>I wouldn't think so, but I noticed these lines in one of Drupal's core files (includes/theme.inc, simplified):</p> <pre><code>// To avoid illegal characters in the class, // we're removing everything disallowed. We are not using 'a-z' as that might leave // in certain international characters (e.g. German umlauts). $body_classes[] = preg_replace('![^abcdefghijklmnopqrstuvwxyz0-9-_]+!s', '', $class); </code></pre> <p>Is this true, or did someone simply get <code>[a-z]</code> confused with <code>\w</code>?</p> http://stackoverflow.com/questions/1930135/prevent-regex-hang-on-large-matches 1 Prevent RegEx Hang on Large Matches... developerjay 2009-12-18T19:11:03Z 2009-12-18T21:04:20Z <p>This is a great regular expression for dates... However it hangs indefinitely on this one page I tried... I wanted to try this page ( <a href="http://pleac.sourceforge.net/pleac%5Fpython/datesandtimes.html" rel="nofollow">http://pleac.sourceforge.net/pleac%5Fpython/datesandtimes.html</a> ) for the fact that it does have lots of dates on it and I want to grab all of them. I don't understand why it is hanging when it doesn't on other pages... Why is my regexp hanging and/or how could I clean it up to make it better/efficient ? </p> <p>Python Code: </p> <pre><code>monthnames = "(?:Jan\w*|Feb\w*|Mar\w*|Apr\w*|May|Jun\w?|Jul\w?|Aug\w*|Sep\w*|Oct\w*|Nov(?:ember)?|Dec\w*)" pattern1 = re.compile(r"(\d{1,4}[\/\\\-]+\d{1,2}[\/\\\-]+\d{2,4})") pattern4 = re.compile(r"(?:[\d]*[\,\.\ \-]+)*%s(?:[\,\.\ \-]+[\d]+[stndrh]*)+[:\d]*[\ ]?(PM)?(AM)?([\ \-\+\d]{4,7}|[UTCESTGMT\ ]{2,4})*"%monthnames, re.I) patterns = [pattern4, pattern1] for pattern in patterns: print re.findall(pattern, s) </code></pre> <p>btw... when i say im trying it against this site.. I'm trying it against the webpage source.</p> http://stackoverflow.com/questions/1930529/regex-pattern-for-findin-http-in-php 1 Regex Pattern for findin http in PHP streetparade 2009-12-18T20:34:01Z 2009-12-18T20:41:51Z <p>Hello everyone, how can i extract the http from this text?</p> <pre><code>"Text: Here's 2 free bonuses. http://blablabla.blabla/blabla " </code></pre> <p><strong>But the url can also be another one.</strong> </p> <p><strong>Finaly</strong> After i have the array, wich contains usualy just one url, how can i add it to the above text exactly at the same position? but with html tag <code>&lt;a&gt;</code> the results should look something like this</p> <pre><code>"Text: Here's 2 free bonuses. &lt;a href='http://blablabla.blabla/blabla'&gt;http://blablabla.blabla/blabla&lt;/a&gt; " </code></pre> http://stackoverflow.com/questions/1930430/regex-converting-php-code-from-eregi-to-pregmatch 1 regex: converting php code from eregi to preg_match ufk 2009-12-18T20:12:54Z 2009-12-18T20:36:53Z <p>Hi. I'm trying to find the proper regular expression to convert <code>eregi($1,$2)</code> to <code>preg_match("/$1/i",$2)</code></p> <p>i need to consider if there will be functions with () in it, and they may appear more then once. can anyone please provide the proper regular expression to do so ?</p> <p>thanks</p> http://stackoverflow.com/questions/1921638/a-z2-4-not-limiting-to-between-2-4-characters 3 [A-Z]{2,4} not limiting to between 2 & 4 characters Zach 2009-12-17T13:01:53Z 2009-12-18T20:25:25Z <pre><code>PCRE: /\A[A-Z0-9_\.%\+\-]+@(?:[A-Z0-9\-]+\.)+(?:[a-z]{2,4}|museum|travel)\z/i POSIX: /^[A-Z0-9_\.%\+\-]+@(?:[A-Z0-9\-]+\.)+(?:[A-Z]{2,4}|museum|travel)$/i </code></pre> <p>This regex is correct in every way for my needs except that it allows emails such as jim@f.com. It says these are a match. If I'm not mistaken, doesn't the {2,4} after [A-Z] mean that it has to be between 2 and 4 characters? Could it be a problem with the altercation and museum and travel? I have verified that these are allowed through in my application, and a few <a href="http://rubular.com/regexes/12473" rel="nofollow">regex testers.</a> <strong>Also, I'm fuzzy on whether I did do the PCRE and POSIX correctly. I fear they might both just be PCRE and I'm being ridiculous. AFAIK, JavaScript is POSIX and Ruby is PCRE. So if I didn't get that right, lemme down easy</strong>, it has been a long, long night of learning regexes, in and out, and I'm trying to look badass. :)</p> http://stackoverflow.com/questions/1930248/convert-a-complicated-string-into-an-array-in-php 1 Convert a complicated string into an array in php Patrick Beardmore 2009-12-18T19:34:02Z 2009-12-18T20:01:57Z <p>I have a <strong>php</strong> variable that comes from a form that needs tidying up. I hope you can help.</p> <p>The variable contains a list of items (possibly two or three word items with a space in between words). I want to convert it to a comma separated list with no superfluous white space. I want the divisions to fall only at commas, semi-colons or new-lines. Blank cannot be an item.</p> <p>Here's a comprehensive example (with a deliberately messy input):</p> <pre><code>Variable In: "dog, cat ,car,tea pot,, ,,, ;;(++NEW LINE++)fly, cake" Variable Out "dog,cat,car,tea pot,fly,cake" </code></pre> <p>Can anyone help?</p> http://stackoverflow.com/questions/1928558/similar-but-not-same-string-sequence 3 Similar but not same string sequence Fabiano Sobreira 2009-12-18T14:35:42Z 2009-12-18T19:48:40Z <p>How to match the following sequence:</p> <pre><code>You wound DUMMY TARGET for 100 points of damage </code></pre> <p>but not:</p> <pre><code>You wound DUMMY TARGET with SKILL for 100 points of damage </code></pre> <p>with the regular expression:</p> <pre><code>^You wound ([\\w\\s]+)(?!with) for (\\d+) points of damage </code></pre> <p>The regular expression above is matching both strings while i expect to match only the first one. Is there any way to make this work?</p> <p>Sample Java code:</p> <pre><code>import java.util.regex.*; public class Dummy { static Pattern pattern = Pattern.compile("^You wound ([\\w\\s]+)(?!with) for (\\d+) points of damage"); static Matcher matcher = pattern.matcher(""); static String FIRST_SEQUENCE = "You wound DUMMY TARGET for 100 points of damage"; static String SECOND_SEQUENCE = "You wound DUMMY TARGET with SKILL for 100 points of damage"; public static void main(String...args) { if (matcher.reset(FIRST_SEQUENCE).matches()) System.out.println("First match. Ok!"); if (matcher.reset(SECOND_SEQUENCE).matches()) System.out.println("Second match. Wrong!"); } } </code></pre> http://stackoverflow.com/questions/1930009/how-to-strip-unicode-chars-lefttorightmark-from-a-string-in-php 1 How to strip unicode chars (LEFT_TO_RIGHT_MARK) from a string in php Marc 2009-12-18T18:48:32Z 2009-12-18T19:06:49Z <p>I'm trying to remove LEFT-TO-RIGHT-MARK (\u200e) and RIGHT-TO-LEFT-MARK (\u200f) from a string before encoding it as JSON. Neither of the following seems to work:</p> <pre><code>$s = mb_ereg_replace("\u200e", '', $s); $s = preg_replace("#\u200e#u", '', $s); $s = preg_replace("#\u200e#", '', $s); </code></pre> <p>Any help is appreciated!</p> http://stackoverflow.com/questions/1929793/regex-to-remove-url-from-text 0 regex to remove URL from text kevin 2009-12-18T18:02:17Z 2009-12-18T18:08:34Z <p>I want to remove all occurrences of URL [full path, query string] from the text in Python. Any suggestions on how to do this? I am new to regex!</p> <pre><code>http://example.com/url/?x=data </code></pre> <p>This whole URL should be removed! Thanks</p> http://stackoverflow.com/questions/1929604/regex-getting-script-parameters-almost-there 1 RegEx getting script & parameters .. almost there... Lix 2009-12-18T17:25:50Z 2009-12-18T17:44:51Z <p>Hi,</p> <p>I'm trying to parse a Powershell script for its functions and parameters. I am almost there, byt I am having troubles with newlines. The expression parses test2 to test6 fine but with test1 I cannot get it to work.</p> <p>I could of course specify my clients do not use the first syntax, but there must be a way. Can someone point me in the right direction? FWIW: I'm using this in C#.</p> <p>The regex I'm using is: "<code>function (\w*)\s*\{\s*param\((.*)\)\s*}</code>"</p> <p>content testfile.ps1:</p> <pre><code>function test1 { param([string]$parm1, [int]$parm2, [bool]$parm3)} function test2 { param([int]$parm2, [bool]$parm3) } function test3 { param(blabla3)} function test4 { param(blabla4) } function test5 {param(blabla5)} function test6{param(blabla6)} </code></pre> <p>Thanks, Alex</p> http://stackoverflow.com/questions/1928713/latex-possible-to-include-large-block-of-regex 1 LaTex: Possible to include large block of Regex? Andrew 2009-12-18T15:01:50Z 2009-12-18T15:23:22Z <p>Hi,</p> <p>is it possible to include a large block of a regex (like this one: <a href="http://www.ex-parrot.com/pdw/Mail-RFC822-Address.html" rel="nofollow">http://www.ex-parrot.com/pdw/Mail-RFC822-Address.html</a>) without escaping all colliding characters first?</p> <p>i think of something like</p> <p>\begin{following_section_will_not_be_parsed_by_latex} (a+?b) \end{...}</p> <p>thank you!</p> <p>Andrew</p>