Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

রেগুলার এক্সপ্রেশন

আপনি কোন স্ট্রিং এর মধ্য থেকে বিশেষ প্যাটার্ন খুঁজে বের করতে রেগুলার এক্সপ্রেশন ব্যবহার করতে পারেন। জাভাস্ক্রিপ্টে, রেগুলার এক্সপ্রেশন ও অবজেক্ট। রেগুলার এক্সপ্রেশন গুলোর প্রটোটাইপ হচ্ছে  RegExp, এই অবজেক্টের exec আর test আর মেথড ব্যবহার করা হয় রেগুলার এক্সপ্রেশন মিলানোর জন্য। এছাড়াও, String অবজেক্টের match, replace, search, এবং split মেথড গুলোর সাথেও রেগুলার এক্সপ্রেশন ব্যবহার করা যায়। এই চ্যাপ্টারে রেগুলার এক্সপ্রেশন নিয়েই আলোচনা করা হয়েছে।

যেভাবে রেগুলার এক্সপ্রেশন তৈরি করবেন

নিচের দুটি পদ্ধতির যেকোন একটি ব্যবহার করে রেগুলার এক্সপ্রেশন তৈরি করতে পারেনঃ

  • রেগুলার এক্সপ্রেশন লিটারেল ব্যবহার করেঃ
    var re = /ab+c/;
    

    লিটারেল ব্যবহার করলে স্ক্রিপ্ট লোড হইয়ার সময়ই রেগুলার এক্সপ্রেশনটি কম্পাইল হয়ে যাবে। যদি আপনার রেগুলার এক্সপ্রেশন কখনো পরিবর্তন না করা লাগে, তাহলে এই পদ্ধতি ব্যবহার করুন।

  • RegExp অবজেক্টের কন্সট্রাক্টর ফাংশন কল করুনঃ
    var re = new RegExp("ab+c");
    

    কন্সট্রাক্টর ফাংশন ব্যবহার করলে রানটাইমে কম্পাইল করা হবে। যখন আপনার রেগুলার এক্সপ্রেশনটি পরিবর্তিত হওয়ার সম্ভাবনা থাকে (যেমন অন্য কোন স্ক্রিপ্ট থেকে আসতে পারে বা ইউজার এর ইনপুট থেকে আসতে পারে) তখন এ পদ্ধতিতে রেগুলার এক্সপ্রেশন তৈরি করুন।

রেগুলার এক্সপ্রেশন প্যাটার্ন লিখা

রেগুলার এক্সপ্রেশন প্যাটার্ন সাধারণ অক্ষর দিয়েই লেখা হয়, যেমন /abc/, অথবা সাধারণ আর বিশেষ বিশেষ ক্যারেক্টার মিলিয়ে তৈরি করা যায়, যেমনঃ /ab*c/ অথবা /Chapter (\d+)\.\d*/। শেষের উদাহরণটিতে প্রথম বন্ধনী ব্যবহার করা হয়েছে, এটা আসলে আপনার দেওয়া স্ট্রিং এর বিশেষ বিশেষ অংশ মনে রাখতে সাহায্য করে। মানে হল, আপনি কোন স্টিং এর ওপর যে রেগুলার এক্সপ্রেশন প্রয়োগ করছেন, সেই রেগুলার এক্সপ্রেশনের বন্ধনীর ভেতর থাকা অংশটুকু আপনার দেওয়া স্টিং এর সাথে ম্যাচ করলে তা মনে রাখা হবে আর আপনি পরে এই মানটি ব্যবহার করতে পারবেন। এ নিয়ে আলোচনা করা হয়েছে বন্ধনী ব্যবহার করে সাব-স্ট্রিং ম্যাচ করা অংশে।

প্যাটার্নের সাধারণ ব্যবহার

যদি সরাসরি এক/একাধিক ক্যারেক্টার বা স্টিং এর সাথে ম্যাচ করতে চান, তাহলে খুব সহজেই প্যাটার্ন লিখা যায়। যেমন, /abc/ প্যাটার্নটি আপনার স্ট্রিং এ যদি শুধুমাত্র 'abc' অক্ষরগুলো একই ক্রমে থাকে, তাহলে ম্যাচ করবে। যেমন "Hi, do you know your abc's?" আর "The latest airplane designs evolved from slabcraft." স্ট্রিংগুলোতে এই প্যাটার্নটি ম্যাচ করবে, কারণ স্ট্রিংদুটি'তেই 'abc' সাবস্ট্রিংটি রয়েছে। কিন্তু "Grab crab" স্ট্রিংটি ম্যাচ করবে না কারণ এতে 'abc' সাবস্ট্রিং নেই।

বিশেষ অক্ষরের ব্যবহার

যখন সরাসরি সাবস্ট্রিং ম্যাচের বদলে জটিল, বিশেষ কোন কিছু ম্যাচ করা দরকার, যেমন কোন স্ট্রিং এ এক বা একাধিক b অক্ষরটি আছে কিনা, অথবা আপনার স্ট্রিং এ white space আছে কিনা, তখন রেগুলার এক্সপ্রেশনে বিশেষ কিছু অক্ষর ব্যবহার করতে হবে। যেমন, /ab*c/ প্যাটার্নটি আপনার দেওয়া স্ট্রিং এ যদি একটিমাত্র 'a' এবং তার পর শূণ্য/এক/একাধিক 'b' অক্ষর থাকে (কোন অক্ষরের পর * দিলে ঐ অক্ষর টি যদি শূণ্য/এক/একাধিকবার থাকলে তাদের ম্যাচ করবে) আর তার পরেই একটিমাত্র 'c' অক্ষর থাকে, তাহলে ম্যাচ করবে। যেমন, "cbbabbbbcdebc," স্ট্রিং এর ওপর প্যাটার্নটি প্রয়োগ করলে কেবলমাত্র 'abbbbc' সাবস্ট্রিংটুকু ম্যাচ করতে পারবে। 

রেগুলার এক্সপ্রেশন-এ যেসব বিশেষ অক্ষর ব্যবহার করা হয় তার একটি সম্পূর্ণ তালিকা বর্ণনাসহ নিচের ছকে দেওয়া হলো । 

ছক ৪.১  রেগুলার এক্সপ্রেশন-এ বিশেষ অক্ষর সমূহ 
অক্ষর অর্থ
\

নিচের নিয়মে অনুসরন করে:

যদি কোন ব্যাকস্লাশ বিশেষ নয় এমন কোন  অক্ষরের পূর্বে থাকে তবে তা আর স্বাভাবিক হিসেবে বিবেচিত হবে না। যেমন, ব্যাকস্লাশ ছাড়া 'b' সাধারনভাবে ছোট হাতের
b কে নির্দেশ করে কিন্তু ব্যাকস্লাশসহ '\b'  শব্দ সীমানা নির্দেশকারি একটি বিশেষ অক্ষর গঠন করে। 

যদি কোন ব্যাকস্লাশ বিশেষ কোন অক্ষরের পূর্বে থাকে তবে তা আর বিশেষভাবে বিবেচিত না হয়ে স্বাভাবিক হিসেবে বিবেচিত হবে। যেমন, প্যাটার্ন /a*/ এ '*' একটি 
বিশেষ অক্ষর যা কিনা বুঝায় 'a' শূন্য থেকে ততোধিক বার থাকতে পারে। কিন্তু /a\*/ '*' এর বিশেষ ক্ষমতাকে নষ্ট করে দেয় এবং এর অর্থ দাড়ায়  'a*' অর্থাৎ a এর পর একটি তারকা অক্ষর। 

উলেখ্য যে, RegExp("pattern") ব্যবহারের ক্ষেত্রে ব্যাকস্লাশ \ কেও ব্যাকস্লাশ দিয়ে escape করা লাগবে কারণ স্ট্রিং এর ক্ষেত্রে ব্যাকস্লাশ নিজেও একটি বিশেষ অক্ষর। 

^ এটি ইনপুটের শুরু নির্দেশ করে। যদি  multiline flag সক্রিয় থাকে তবে line break অক্ষরের পরবর্তী অবস্থানকে নির্দেশ করে। 

উদাহরণস্বরুপ,  "an A" স্ট্রিং-এ,  /^A/ দিয়ে  'A'  এর মিল পাওয়া যাবে না কিন্তু  "An E" স্ট্রিং-এ /^A/ দিয়ে  'A'  এর মিল পাওয়া যাবে

অক্ষর সেটের ক্ষেত্রে '^'  এর আলাদা অর্থ রয়েছে । বিস্তারিত জানার জন্যে  complemented character sets দেখা যেতে পারে। 
$

এটি ইনপুটের শেষ নির্দেশ করে। যদি  multiline flag সক্রিয় থাকে তবে line break অক্ষরের পূর্ববর্তি অবস্থানকে নির্দেশ করে।  

উদাহরণস্বরুপ,  "eater" স্ট্রিং-এ,  /t$/ দিয়ে  't'  এর মিল পাওয়া যাবে না কিন্তু  "eat" স্ট্রিং-এ /t$/ দিয়ে  't '  এর মিল পাওয়া যাবে। 

*

শূন্য থেকে ততোধিক অক্ষর নির্দেশ করে। যা  {0,} এর অনুরুপ। 

উদাহরণস্বরুপ /bo*/ মানে b একবার এবং o শূন্য থেকে ততোধিক বার থাকতে পারবে।  সুতরাং /bo*/ দিয়ে "A ghost booooed" স্ট্রিং-এ  'boooo' এর মিল খুঁজে পাওয়া যাবে। আবার "A bird warbled"  স্ট্রিং-এ শুধু 'b' মিল পাওয়া যাবে। কিন্তু  "A goat grunted" স্ট্রিং-এ কোন মিল পাওয়া যাবে না। 

+

এক থেকে ততোধিক অক্ষর নির্দেশ করে। যা  {1,} এর অনুরুপ। 

উদাহরণস্বরুপ /a+/ মানে a এক থেকে ততোধিক বার থাকতে পারবে।  সুতরাং /a+/ দিয়ে "candy" স্ট্রিং-এ  'a' এর মিল খুঁজে পাওয়া যাবে। আবার "caaaaaaandy"  স্ট্রিং-এ 'aaaaaaa' মিল পাওয়া যাবে।

? এর মানে অক্ষরটি থাকতে পারে আবার নাও থাকতে পারে। যা  {0,1} এর অনুরুপ।  

উদাহরণস্বরুপ /e?le?/ দিয়ে "angel" এ  'el' আবার  "angle"  এ 'el' এবং "oslo" তে   'l' মিল পাওয়া যাবে। 

If used immediately after any of the quantifiers *, +, ?, or {}, makes the quantifier non-greedy (matching the fewest possible characters), as opposed to the default, which is greedy (matching as many characters as possible). For example, applying /\d+/ to "123abc" matches "123". But applying /\d+?/ to that same string matches only the "1".

Also used in lookahead assertions, as described in the x(?=y) and x(?!y) entries of this table.
 
.

(The decimal point) matches any single character except the newline character.

For example, /.n/ matches 'an' and 'on' in "nay, an apple is on the tree", but not 'nay'.

(x)

Matches 'x' and remembers the match, as the following example shows. The parentheses are called capturing parentheses.

The '(foo)' and '(bar)' in the pattern /(foo) (bar) \1 \2/ match and remember the first two words in the string "foo bar foo bar". The \1 and \2 in the pattern match the string's last two words. Note that \1, \2, \n are is used in the matching part of the regex. In the replacement part of a regex the syntax $1, $2, $n must be used, e.g.: 'bar foo'.replace( /(...) (...)/, '$2 $1' ).

(?:x) Matches 'x' but does not remember the match. The parentheses are called non-capturing parentheses, and let you define subexpressions for regular expression operators to work with. Consider the sample expression /(?:foo){1,2}/. Without the non-capturing parentheses, the {1,2} characters would apply only to the last 'o' in 'foo'. With the capturing parentheses, the {1,2} applies to the entire word 'foo'.
x(?=y)

Matches 'x' only if 'x' is followed by 'y'. This is called a lookahead.

For example, /Jack(?=Sprat)/ matches 'Jack' only if it is followed by 'Sprat'. /Jack(?=Sprat|Frost)/ matches 'Jack' only if it is followed by 'Sprat' or 'Frost'. However, neither 'Sprat' nor 'Frost' is part of the match results.

x(?!y)

Matches 'x' only if 'x' is not followed by 'y'. This is called a negated lookahead.

For example, /\d+(?!\.)/ matches a number only if it is not followed by a decimal point. The regular expression /\d+(?!\.)/.exec("3.141") matches '141' but not '3.141'.

x|y

Matches either 'x' or 'y'.

For example, /green|red/ matches 'green' in "green apple" and 'red' in "red apple."

{n} Matches exactly n occurrences of the preceding character. N must be a positive integer.

For example, /a{2}/ doesn't match the 'a' in "candy," but it does match all of the a's in "caandy," and the first two a's in "caaandy."
{n,m}

Where n and m are positive integers. Matches at least n and at most m occurrences of the preceding character. When m is zero, it can be omitted.

For example, /a{1,3}/ matches nothing in "cndy", the 'a' in "candy," the first two a's in "caandy," and the first three a's in "caaaaaaandy" Notice that when matching "caaaaaaandy", the match is "aaa", even though the original string had more a's in it.

[xyz] Character set. This pattern type matches any one of the characters in the brackets, including escape sequences. Special characters like the dot(.) and asterisk (*) are not special inside a character set, so they don't need to be escaped. You can specify a range of characters by using a hyphen, as the following examples illustrate.

The pattern [a-d], which performs the same match as [abcd], matches the 'b' in "brisket" and the 'c' in "city". The patterns /[a-z.]+/ and /[\w.]+/ match the entire string "test.i.ng".
[^xyz]

A negated or complemented character set. That is, it matches anything that is not enclosed in the brackets. You can specify a range of characters by using a hyphen. Everything that works in the normal character set also works here.

For example, [^abc] is the same as [^a-c]. They initially match 'r' in "brisket" and 'h' in "chop."

[\b] Matches a backspace (U+0008). You need to use square brackets if you want to match a literal backspace character. (Not to be confused with \b.)
\b

Matches a word boundary. A word boundary matches the position where a word character is not followed or preceeded by another word-character. Note that a matched word boundary is not included in the match. In other words, the length of a matched word boundary is zero. (Not to be confused with [\b].)

Examples:
/\bm/ matches the 'm' in "moon" ;
/oo\b/ does not match the 'oo' in "moon", because 'oo' is followed by 'n' which is a word character;
/oon\b/ matches the 'oon' in "moon", because 'oon' is the end of the string, thus not followed by a word character;
/\w\b\w/ will never match anything, because a word character can never be followed by both a non-word and a word character.

\B

Matches a non-word boundary. This matches a position where the previous and next character are of the same type: Either both must be words, or both must be non-words. The beginning and end of a string are considered non-words.

For example, /\B../ matches 'oo' in "noonday" (, and /y\B./ matches 'ye' in "possibly yesterday."

\cX

Where X is a character ranging from A to Z. Matches a control character in a string.

For example, /\cM/ matches control-M (U+000D) in a string.

\d

Matches a digit character. Equivalent to [0-9].

For example, /\d/ or /[0-9]/ matches '2' in "B2 is the suite number."

\D

Matches any non-digit character. Equivalent to [^0-9].

For example, /\D/ or /[^0-9]/ matches 'B' in "B2 is the suite number."

\f Matches a form feed (U+000C).
\n Matches a line feed (U+000A).
\r Matches a carriage return (U+000D).
\s

Matches a single white space character, including space, tab, form feed, line feed. Equivalent to [ \f\n\r\t\v​\u00a0\u1680​\u180e\u2000​\u2001\u2002​\u2003\u2004​\u2005\u2006​\u2007\u2008​\u2009\u200a​\u2028\u2029​​\u202f\u205f​\u3000].

For example, /\s\w*/ matches ' bar' in "foo bar."

\S

Matches a single character other than white space. Equivalent to [^ \f\n\r\t\v​\u00a0\u1680​\u180e\u2000​\u2001\u2002​\u2003\u2004​\u2005\u2006​\u2007\u2008​\u2009\u200a​\u2028\u2029​\u202f\u205f​\u3000].

For example, /\S\w*/ matches 'foo' in "foo bar."

\t Matches a tab (U+0009).
\v Matches a vertical tab (U+000B).
\w

Matches any alphanumeric character including the underscore. Equivalent to [A-Za-z0-9_].

For example, /\w/ matches 'a' in "apple," '5' in "$5.28," and '3' in "3D."

\W

Matches any non-word character. Equivalent to [^A-Za-z0-9_].

For example, /\W/ or /[^A-Za-z0-9_]/ matches '%' in "50%."

\n

Where n is a positive integer, a back reference to the last substring matching the n parenthetical in the regular expression (counting left parentheses).

For example, /apple(,)\sorange\1/ matches 'apple, orange,' in "apple, orange, cherry, peach."

\0 Matches a NULL (U+0000) character. Do not follow this with another digit, because \0<digits> is an octal escape sequence.
\xhh Matches the character with the code hh (two hexadecimal digits)
\uhhhh Matches the character with the code hhhh (four hexadecimal digits).

Escaping user input to be treated as a literal string within a regular expression can be accomplished by simple replacement:

function escapeRegExp(string){
  return string.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1");
}

Using Parentheses

Parentheses around any part of the regular expression pattern cause that part of the matched substring to be remembered. Once remembered, the substring can be recalled for other use, as described in Using Parenthesized Substring Matches.

For example, the pattern /Chapter (\d+)\.\d*/ illustrates additional escaped and special characters and indicates that part of the pattern should be remembered. It matches precisely the characters 'Chapter ' followed by one or more numeric characters (\d means any numeric character and + means 1 or more times), followed by a decimal point (which in itself is a special character; preceding the decimal point with \ means the pattern must look for the literal character '.'), followed by any numeric character 0 or more times (\d means numeric character, * means 0 or more times). In addition, parentheses are used to remember the first matched numeric characters.

This pattern is found in "Open Chapter 4.3, paragraph 6" and '4' is remembered. The pattern is not found in "Chapter 3 and 4", because that string does not have a period after the '3'.

To match a substring without causing the matched part to be remembered, within the parentheses preface the pattern with ?:. For example, (?:\d+) matches one or more numeric characters but does not remember the matched characters.

Working with Regular Expressions

Regular expressions are used with the RegExp methods test and exec and with the String methods match, replace, search, and split. These methods are explained in detail in the JavaScript Reference.

Table 4.2 Methods that use regular expressions
Method Description
exec A RegExp method that executes a search for a match in a string. It returns an array of information.
test A RegExp method that tests for a match in a string. It returns true or false.
match A String method that executes a search for a match in a string. It returns an array of information or null on a mismatch.
search A String method that tests for a match in a string. It returns the index of the match, or -1 if the search fails.
replace A String method that executes a search for a match in a string, and replaces the matched substring with a replacement substring.
split A String method that uses a regular expression or a fixed string to break a string into an array of substrings.

When you want to know whether a pattern is found in a string, use the test or search method; for more information (but slower execution) use the exec or match methods. If you use exec or match and if the match succeeds, these methods return an array and update properties of the associated regular expression object and also of the predefined regular expression object, RegExp. If the match fails, the exec method returns null (which coerces to false).

In the following example, the script uses the exec method to find a match in a string.

var myRe = /d(b+)d/g;
var myArray = myRe.exec("cdbbdbsbz");

If you do not need to access the properties of the regular expression, an alternative way of creating myArray is with this script:

var myArray = /d(b+)d/g.exec("cdbbdbsbz");

If you want to construct the regular expression from a string, yet another alternative is this script:

var myRe = new RegExp("d(b+)d", "g");
var myArray = myRe.exec("cdbbdbsbz");

With these scripts, the match succeeds and returns the array and updates the properties shown in the following table.

Table 4.3 Results of regular expression execution.
Object Property or index Description In this example
myArray   The matched string and all remembered substrings. ["dbbd", "bb"]
index The 0-based index of the match in the input string. 1
input The original string. "cdbbdbsbz"
[0] The last matched characters. "dbbd"
myRe lastIndex The index at which to start the next match. (This property is set only if the regular expression uses the g option, described in Advanced Searching With Flags.) 5
source The text of the pattern. Updated at the time that the regular expression is created, not executed. "d(b+)d"

As shown in the second form of this example, you can use a regular expression created with an object initializer without assigning it to a variable. If you do, however, every occurrence is a new regular expression. For this reason, if you use this form without assigning it to a variable, you cannot subsequently access the properties of that regular expression. For example, assume you have this script:

var myRe = /d(b+)d/g;
var myArray = myRe.exec("cdbbdbsbz");
console.log("The value of lastIndex is " + myRe.lastIndex);

This script displays:

The value of lastIndex is 5

However, if you have this script:

var myArray = /d(b+)d/g.exec("cdbbdbsbz");
console.log("The value of lastIndex is " + /d(b+)d/g.lastIndex);

It displays:

The value of lastIndex is 0

The occurrences of /d(b+)d/g in the two statements are different regular expression objects and hence have different values for their lastIndex property. If you need to access the properties of a regular expression created with an object initializer, you should first assign it to a variable.

Using Parenthesized Substring Matches

Including parentheses in a regular expression pattern causes the corresponding submatch to be remembered. For example, /a(b)c/ matches the characters 'abc' and remembers 'b'. To recall these parenthesized substring matches, use the Array elements [1], ..., [n].

The number of possible parenthesized substrings is unlimited. The returned array holds all that were found. The following examples illustrate how to use parenthesized substring matches.

Example 1

The following script uses the replace() method to switch the words in the string. For the replacement text, the script uses the $1 and $2 in the replacement to denote the first and second parenthesized substring matches.

var re = /(\w+)\s(\w+)/;
var str = "John Smith";
var newstr = str.replace(re, "$2, $1");
console.log(newstr);

This prints "Smith, John".

Advanced Searching With Flags

Regular expressions have four optional flags that allow for global and case insensitive searching. These flags can be used separately or together in any order, and are included as part of the regular expression.

Table 4.4 Regular expression flags.
Flag Description
g Global search.
i Case-insensitive search.
m Multi-line search.
y Perform a "sticky" search that matches starting at the current position in the target string.

Firefox 3 note

Support for the y flag was added in Firefox 3. The y flag fails if the match doesn't succeed at the current position in the target string.

To include a flag with the regular expression, use this syntax:

var re = /pattern/flags;

or

var re = new RegExp("pattern", "flags");

Note that the flags are an integral part of a regular expression. They cannot be added or removed later.

For example, re = /\w+\s/g creates a regular expression that looks for one or more characters followed by a space, and it looks for this combination throughout the string.

var re = /\w+\s/g;
var str = "fee fi fo fum";
var myArray = str.match(re);
console.log(myArray);

This displays ["fee ", "fi ", "fo "]. In this example, you could replace the line:

var re = /\w+\s/g;

with:

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

and get the same result.

The m flag is used to specify that a multiline input string should be treated as multiple lines. If the m flag is used, ^ and $ match at the start or end of any line within the input string instead of the start or end of the entire string.

Examples

The following examples show some uses of regular expressions.

Changing the Order in an Input String

The following example illustrates the formation of regular expressions and the use of string.split() and string.replace(). It cleans a roughly formatted input string containing names (first name first) separated by blanks, tabs and exactly one semicolon. Finally, it reverses the name order (last name first) and sorts the list.

// The name string contains multiple spaces and tabs,
// and may have multiple spaces between first and last names.
var names = "Harry Trump ;Fred Barney; Helen Rigby ; Bill Abel ; Chris Hand ";

var output = ["---------- Original String\n", names + "\n"];

// Prepare two regular expression patterns and array storage.
// Split the string into array elements.

// pattern: possible white space then semicolon then possible white space
var pattern = /\s*;\s*/;

// Break the string into pieces separated by the pattern above and
// store the pieces in an array called nameList
var nameList = names.split(pattern);

// new pattern: one or more characters then spaces then characters.
// Use parentheses to "memorize" portions of the pattern.
// The memorized portions are referred to later.
pattern = /(\w+)\s+(\w+)/;

// New array for holding names being processed.
var bySurnameList = [];

// Display the name array and populate the new array
// with comma-separated names, last first.
//
// The replace method removes anything matching the pattern
// and replaces it with the memorized string—second memorized portion
// followed by comma space followed by first memorized portion.
//
// The variables $1 and $2 refer to the portions
// memorized while matching the pattern.

output.push("---------- After Split by Regular Expression");

var i, len;
for (i = 0, len = nameList.length; i < len; i++){
  output.push(nameList[i]);
  bySurnameList[i] = nameList[i].replace(pattern, "$2, $1");
}

// Display the new array.
output.push("---------- Names Reversed");
for (i = 0, len = bySurnameList.length; i < len; i++){
  output.push(bySurnameList[i]);
}

// Sort by last name, then display the sorted array.
bySurnameList.sort();
output.push("---------- Sorted");
for (i = 0, len = bySurnameList.length; i < len; i++){
  output.push(bySurnameList[i]);
}

output.push("---------- End");

console.log(output.join("\n"));

Using Special Characters to Verify Input

In the following example, the user is expected to enter a phone number. When the user presses the "Check" button, the script checks the validity of the number. If the number is valid (matches the character sequence specified by the regular expression), the script shows a message thanking the user and confirming the number. If the number is invalid, the script informs the user that the phone number is not valid.

Within non-capturing parentheses (?: , the regular expression looks for three numeric characters \d{3} OR | a left parenthesis \( followed by three digits \d{3}, followed by a close parenthesis \), (end non-capturing parenthesis )), followed by one dash, forward slash, or decimal point and when found, remember the character ([-\/\.]), followed by three digits \d{3}, followed by the remembered match of a dash, forward slash, or decimal point \1, followed by four digits \d{4}.

The Change event activated when the user presses Enter sets the value of RegExp.input.

<!DOCTYPE html>
<html>  
  <head>  
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">  
    <meta http-equiv="Content-Script-Type" content="text/javascript">  
    <script type="text/javascript">  
      var re = /(?:\d{3}|\(\d{3}\))([-\/\.])\d{3}\1\d{4}/;  
      function testInfo(phoneInput){  
        var OK = re.exec(phoneInput.value);  
        if (!OK)  
          window.alert(RegExp.input + " isn't a phone number with area code!");  
        else
          window.alert("Thanks, your phone number is " + OK[0]);  
      }  
    </script>  
  </head>  
  <body>  
    <p>Enter your phone number (with area code) and then click "Check".
        <br>The expected format is like ###-###-####.</p>
    <form action="#">  
      <input id="phone"><button onclick="testInfo(document.getElementById('phone'));">Check</button>
    </form>  
  </body>  
</html>

ডকুমেন্ট ট্যাগ এবং অবদানকারী

 Contributors to this page: samirkumardas, teoli, shafiul
 সর্বশেষ হালনাগাদ করেছেন: samirkumardas,