Prepare
Practice
Interview
Aptitude
Reasoning
English
GD
Placement papers
HR
Current affairs
Engineering
MCA
MBA
Online test
Login
Online Practice Test
>
Oracle PLSQL
« Previous
Next »
Which of the following Metacharacter Matches the position at the start of the string?
Options
- ^
- #
- ?
- *
CORRECT ANSWER : ^
Discussion Board
Metacharacters
Following are the metacharacters with their standard meanings:
\ : Quote the next metacharacter.
^ : Match the beginning of the line.
. : Match any character (except newline).
$ : Match the end of the line (or before newline at the end).
| : Alternation.
() : Grouping.
[] : Character class.
Prajakta Pandit 02-15-2017 01:44 AM
Matching position
For see the matching position in a string we use '_', eg
to see the third position in a string we write code as,
SELECT projection list FROM table name
WHERE column_name LIKE '__C%';
Above query will check if the third place in a string is 'C'.
so as per my view all of the options given are wrong
Deepika S Verma 11-28-2014 06:33 AM
« Previous
Next »
Write your comments
*
*
Email must be in the form someone@domain.com
*
*
Enter the code shown above:
Please enter the code shown above
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)
Related Content
Oracle (40)
Oracle (30)
Oracle (49)
Oracle (51)
Oracle (52)
Oracle DBA (29)
Oracle PLSQL (30)
Oracle Replication (20)
Oracle Architecture (20)
Oracle Transaction (20)
PLSQL (22)
PLSQL (24)
PLSQL (50)
Advertisement
▲