- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
With JavaScript RegExp search an octal number character.
To find an octal number character with JavaScript Regular Expression, use the following. Add the octal number here −
\xxx
You can try to run the following code to find an octal number character. It searches for octal number 123 i.e S −
Example
<html> <head> <title>JavaScript Regular Expression</title> </head> <body> <script> var myStr = "Secure and Responsive!"; var reg = /\123/g; var match = myStr.match(reg); document.write(match); </script> </body> </html>
Output
S
Advertisements