vote up -2 vote down star

Hi, i want to know how to write the regular expression in javascirpt please help me give a simple exaple with details i mean the source code(i am using asp.net and c# language) thank u

flag

6 Answers

vote up 1 vote down check

There are tons of examples online for using JavaScript's RegExp object. Start with this.

Here is a simple example of creating a RegExp and then using it to determine whether there is at least one occurrence of the word "dog" in the passed string.

var myString = "I wish all dogs were brown.";
var myRegExp = new RegExp("dog");
var containsDog = myRegExp.test(myString);

In this example, containsDog would be 'true'.

link|flag
thank u Mr.Gene Goykhman i will check it out this – Surya sasidhar Nov 9 at 7:30
vote up 0 vote down

This should also work:

var myString = "I wish all dogs were brown.";
if (myString.match(/dog/i))
{
    //do something
}
link|flag
vote up 1 vote down

I think the following articles from Mozilla Dev Center are a very good introduction:

link|flag
thank you for good reference Mr. CMS – Surya sasidhar Nov 10 at 12:29
vote up 0 vote down

You can write a regular expression literal enclosed in slashes like this:

var re = /\w+/;

That matches something that contains one or more word characters.

You can also create a regular expression from a string:

var re = new RegExp("\\w+");

Notice that since that's a string literal, I have to double the backslash to escape its special meaning for strings.

link|flag
vote up 1 vote down

You can read these

Regular Expressions

Regular Expressions patterns

String and Regular Expression methods

If you are interested in buying a regex book then this one is good

Regular Expressions Cookbook

link|flag
Thank u for good reference Mr.Phoenix – Surya sasidhar Nov 9 at 7:32
vote up 1 vote down

You may want to refer concise article on : www.regular-expressions.info/javascript.html

First you need to understand the concept of regular expression. Once you know what regex is, writing them in any language is not difficult.

link|flag
1  
As for me, regex is always difficult :) – x2 Nov 9 at 7:05
ya thanks mr.jatanp i think u r an Indian right? – Surya sasidhar Nov 9 at 7:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.