
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
With JavaScript RegExp search a vertical tab character.
To find a vertical tab character with JavaScript Regular Expression, use the following −
\v
Example
You can try to run the following code to find a vertical tab character. It returns the position where the vertical tab (\v) character is found −
<html> <head> <title>JavaScript Regular Expression</title> </head> <body> <script> var myStr = "Secure and \v Responsive!"; var reg = /\v/; var match = myStr.search(reg); document.write(match); </script> </body> </html>
- Related Articles
- With JavaScript RegExp search a tab character.
- With JavaScript RegExp search a carriage return character.
- With JavaScript RegExp search a hexadecimal number character.
- With JavaScript RegExp search an octal number character.
- With JavaScript RegExp find a character except newline?
- Find a new line character with JavaScript RegExp.
- Find a form feed character with JavaScript RegExp.
- With JavaScript RegExp how to search a string for text that matches regexp?
- Find word character in a string with JavaScript RegExp?
- How to create a vertical tab menu with CSS and JavaScript?
- Find non-word character in a string with JavaScript RegExp
- Set the width of a tab character with CSS
- MySQL query for alphabetical search (ABC) with REGEXP?
- How to find character between brackets in JavaScript RegExp?
- How to find a character, not between the brackets in JavaScript RegExp?

Advertisements