|
|
Browse by Tags
All Tags » regex
Showing page 1 of 14 (136 total posts)
-
i want a regular expression for the followint possible inputs.
19.19-19.19
19.9-19.9
1.9-1.9
.9-.9
.9-.19
.19-.9
.56-6.5
6.5-.56
65.-56.
6.-56.
65.-6.
Regards,
Pawan.
-
Hello,
I would like to find a regular expression to validate (in perl) a ftp url.
For example: ftp://username:password@subdomain.example.com/path1/example.txt
Someone can help me?
-
Helo everyone,
I am new here and today I had my first expression with Regular Expressions. I read for hours and I am trying but my expression doesnt work. I Have a xml that has the rules for extracting some values from a file to show them to thes users (the program is in VB). The file contains this line -->
Delivery: Phone:989909 ...
-
Here is the code to check whether the given string is a valid URL or not using Regular Expresssions.
Public Function IsValidUrl(ByVal Url As String) As Boolean
Dim strRegex As String = "^(https?://)" ...
-
I have a support portal with the breadcrumb nav set up like so:
<a href="http://www.flipflopmedia.com/NewSite/">Home</a> >
{if $breadcrumbnav =='<a href="cart.php">Shopping Cart</a>'} <a href="http://clients.flipflopmedia.com/index.php">Support Portal</a> > ...
-
Hi
I need to check the text box value. The validation should be as folows.
A + ve number may contain decimal values with maximum 16 characters , 12 characters to the left of decimal point + decimal point + 3 places of decimal places. Example.. 123456789123.123 , left to decimal can not be more than 12 digit, right side can not be more than ...
-
hey,
i need a regex for .NET that will validate 2 specific email domains: mail.myuniv.edu and special.myuniv.edu. i can get an expression (below) that will validate one or the other but not both.
^[\w\-\.\+]+\@\bmail\b\.\bmyuniv\b\.\bedu\b$ // this will validate ...
-
Good day!
i have a regex code that will match a street number and street name, but i thinks its too long... i would appreciate it if someone would simplify it for me..
here's the rules:
- this will accept international street name
- i only want the number with the attached letter in a street.. (another scenario is to also include ...
-
Hi,
I'm trying to construct a javascript code to be used as a bookmark in my browser. A click on the bookmark should add a string to the url of the currently shown web site.
For example, the site http://www.jstor.org/stable/2497020 should become http://www.jstor.org.proxy.libraries.org/stable/2497020.
So far, I have following code to be ...
-
Hello,
I need to search a document for all rapidshare.com links. I will fetch a URL using file_get_contents and then search the page for all rapidshare links.
i found a regex here but which don't work. may be it is not for PHP. I need one for PHP.
thanks in advance.
1 ...
|
|
|