Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
regular-expression
- Page 1
regular expression
Programming
Web Development
11 Years Ago
by abhijit_2
regular
expression
that accept only letters OR numbers.
Regular expression beginner
Programming
Software Development
13 Years Ago
by arindam31
Regular
Expression
(RE) They can be used with string operations. Using this, … a p.iiiigand no gbng gtrg ghgg') p.i Slash ( \ )
Regular
expressions use the backslash character ('\') to indicate special forms or…
Regular expression matching in a string
Programming
Software Development
19 Years Ago
by roverphoenix
Regular
expression
pattern match in a string, I only checked with * as wild card, other wild card characters are easy implement but I havent done that. any problems you can email me @ [email]rramaswa@usc.edu[/email] platform - Unix/Linux, havent tested in windows, should'nt be a problem unless some standard header files are missing.
Regular Expression
Programming
Web Development
18 Years Ago
by knittingguy
Hi all, I am having a little problem with
regular
expression
. I have a change password application and I want to … sure the password contains at least one numeric character. The
regular
expression
that I am using is, [a-zA-Z]+[0-9…
Regular expression
Programming
Web Development
15 Years Ago
by sumangala
Hi all,I am trying for validation using
regular
expression
for Indian mobile number. Simply i have tried for"^[8,9]{1}[0-9]{9}$" and some others also but it is not working. I want
regular
expression
for: 10 digit mobile number starts with 8 or 9
Re: Regular expression
Programming
Web Development
15 Years Ago
by samaru
> Hi all,I am trying for validation using
regular
expression
for Indian mobile number. > Simply i have tried for&… also > but it is not working. > I want
regular
expression
for: > 10 digit mobile number > starts with 8…
regular expression help
Programming
Software Development
12 Years Ago
by deadsolo
Hi there everyone, I am having some difficulties getting a
regular
expression
to work. I have a line of text with 5 ….676875527 12.76832461 2.725877787 9.275756545 Here is the
regular
expression
I came up with(I'm a noob at regexs…
Regular Expression
Programming
Web Development
11 Years Ago
by prem2
Hi guys, I am struggling with
regular
expression
.Can you please suggest the
regular
expression
for the below patterns. I have tried many times with…
Regular expression
Programming
Software Development
14 Years Ago
by AhmedGhazey
…’t. Can it be done using traditional
regular
expression
?!! the question what is the
regular
expressions that solve this problem I'm new…
Regular expression
Programming
Software Development
20 Years Ago
by Nihar
Hi there, Does any one know a Perl
regular
expresson to ignore specific string from a log file. For … i want to use this simple unix command using perl
regular
expression
egrep -i -n "error|fatal" logfile.log |\egrep…
Re: Regular expression
Programming
Software Development
20 Years Ago
by YUPAPA
[QUOTE=Nihar]Hi there, Does any one know a Perl
regular
expresson to ignore specific string from a log file. For … i want to use this simple unix command using perl
regular
expression
egrep -i -n "error|fatal" logfile.log |\egrep…
Regular Expression Help please!
Programming
Software Development
17 Years Ago
by sid99
Hi, I am quite new to
regular
expression
and I am kinda stuck on this question. I am … correct answer. Thanks, [B]heres the question: [/B] Write down
regular
expressions that define a pattern to recognise a decimal literal…
Regular Expression
Programming
Web Development
15 Years Ago
by sonia sardana
… characters in textbox not numbers.For dat I use
Regular
Expression
Validator,But even after dat numbers are entering. […" runat="server" ErrorMessage="This
expression
does not validate." ControlToValidate="TextBox1"…
regular expression
Programming
Web Development
14 Years Ago
by benjaminFowl87
Could any wiz at
regular
expression
write an
expression
that will check whether a string matches this format number=string must have the =sign included, the number can be anything up 3 numbers and the string can contain any characters this would very much apreciated i've been tryin this d*3/=/{aA-zZ}$/ thanks
Re: Regular expression
Programming
Software Development
20 Years Ago
by Nihar
…; i believe it's clear now. I'm looking for
regular
expression
to parse this kinda log file. i can simply use…
Re: Regular Expression
Programming
Software Development
18 Years Ago
by trickykid
… me in finding out any good and quick ebook on
Regular
Expression
on PERL . Vinay[/QUOTE] I'd recommend the RegExpressions book… somewhere or online with their Safari online suite. But learning
regular
expressions shouldn't have to pertain to Perl books, any…
Re: Regular expression
Programming
Web Development
17 Years Ago
by peter_budo
Here is [URL="http://java.sun.com/docs/books/tutorial/essential/regex/"]Sun tutorial[/URL] on
regular
expressions and here are others results from [URL="http://www.google.co.uk/search?hl=en&q=java+
regular
+
expression
+tutorial&btnG=Search&meta="]google[/URL]
Re: Regular expression
Programming
Software Development
15 Years Ago
by vinnijain
Thanks a lot Ryshad......... :) Can you give me the links from where you read the
regular
articles of
regular
expression
..... Provide some guidance so that I may also learn new things............
regular expression
Programming
Web Development
19 Years Ago
by paradox814
so I am trying to write a
regular
expression
lets just take this case for an example: [code]^[0-9a-z]{5,9}$[/code] OR an empty string, how would I add that part? I tried stuff like:[code]^([0-9a-z]{5,9}|[]{0})$[/code]but to no avail, any ideas?
Re: regular expression
Programming
Web Development
19 Years Ago
by fisheye
My suggestion would be to avoid putting so much overhead in the
regular
expression
engine for such a simple test. You can accomplish what you want in PHP by doing something like: [PHP] # Assuming you are testing $string... if(preg_match('/^[0-9a-z]{5,9}$/',$string) || strlen($string) < 1) { # Do things here. } [/PHP] How about that?
Regular Expression
Programming
Software Development
18 Years Ago
by msvinaykumar
Hi, Please help me in finding out any good and quick ebook on
Regular
Expression
on PERL . Vinay
regular expression
Programming
Web Development
17 Years Ago
by Taffd
Is it possible to include the character < in a
regular
expression
? I don't seem to be able to find a reference to it anywhere and am unable to build a regex with just this one character.
Re: regular expression
Programming
Web Development
17 Years Ago
by digital-ether
…]Is it possible to include the character < in a
regular
expression
? I don't seem to be able to find a…
Regular expression
Programming
Web Development
17 Years Ago
by lkoru
Hi , Can please some one help me out in writing the
Regular
Expression
pattern for <input type="hidden" id="some-id" name="some-name" value="some-value" . Thanks in Advance
Regular Expression help
Programming
Software Development
16 Years Ago
by metalla_nz
…;br>PLATFORM<br>[/CODE] I need a
regular
expression
to parse out the relevant bits in caps Ive been…
Regular expression
Programming
Software Development
15 Years Ago
by marcinkuptel
Hi, Is there a way to split the string: 'Autocolli\^sion:No^Pack\^age:10DB15' on '^' character, but not if it follows a backslash? I have tried a
regular
expression
like '[^\\]\^' but it removes also the 'o' in 'No'. Marcin
Regular expression
Programming
Software Development
15 Years Ago
by vinnijain
… have used toolbar Can anyone tell me how to create
regular
expression
for above together. The code which I am using is…
Re: Regular expression
Programming
Software Development
15 Years Ago
by Geekitygeek
… not work. You need to extract the number, altering the
regular
expression
that sknake gave you will allow you to do this…
Re: Regular expression
Programming
Software Development
15 Years Ago
by vinnijain
… has given it is not implementing with the code of
regular
expression
. 6.And for the first time when I click on…
Re: Regular expression
Programming
Software Development
15 Years Ago
by Geekitygeek
… of understanding the code you are given. I edited sknakes
regular
expression
using a syntax reference online; I havent done a lot…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC