Advertisement

1 - 10 of 821 containing alltags:("RegEx") (0.001 seconds)
Pattern.matches("\\D", av[0]) Shouldn't the above hit on any of the following strings? x 44x 4x4 x44 (perl regx guy, java 1.4)
Zones: JavaDate Answered: 08/21/2002 Grade: A Views: 0
Hi Expert,   Now i am using the following Regex for resolving the IP Addresss entered in a text box. function isIPAddress(s) {  var regex = /^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/g;  return...
Zones: JavaScriptDate Answered: 02/11/2004 Grade: A Views: 0
Hi people, I have to write a parser in C# that takes keys and values from a text file and put it into the right xml format. Here is an example: <#ADR1=my address> - parse to - <ADR1>my addr...
Zones: C#Date Answered: 04/04/2003 Grade: B Views: 0
simplified code:           using System;           using System.Text.RegularExpressions;           ...           MatchCollection matches = Regex.Matches("aaa/bbb/ccc/ddd/eee/", ".+/", Reg...
Zones: C#Date Answered: 08/02/2003 Grade: A Views: 0
Is there no jar for the regex packages to download? Does one have to switch to 1.4? ..thanks
Zones: JavaDate Answered: 08/14/2003 Grade: A Views: 0
hi, Is there a way to use inline regex? for example I have: var tempstr = "404;http://www.somedomain-or_other.com/somedir/somediragain/somefile.html" what would be the most efficient wa...
Zones: ASPDate Answered: 11/04/2003 Grade: A Views: 0
Here is the string; <td width="80"><b>Cost:</b>Free with museum admission. &nbsp;</td> this test <td> </td></b> <td width="80"><b>Time:</b> Fri 8pm; Sat 7:30pm, 9:45pm <b>Cost:</b> -1 &nbsp;</td>...
Zones: PHPDate Answered: 02/13/2004 Grade: A Views: 0
I have a piece of code below that uses the console to prompt the user for a complete path to an input file. No matter what I do with regex I can't get the full path to be assigned to a string such ...
Zones: JavaDate Answered: 03/15/2004 Grade: A Views: 0
this is what I use in the custom 404 error script for domain name and suffix detection, could someone help me make it more portable and efficient? To account for other than www. prefixes and any su...
Zones: ASPDate Answered: 07/12/2004 Grade: A Views: 0
  I'm attempting to parse a text file into an SQL table using Regex Match. I have successfully matched just the port. However, I've never Matched a complete sentence before. The sentences all star...
Zones: Programming, Regular ExpressionsDate Answered: 09/16/2004 Grade: B Views: 4