Suppose There is a string
A.B....C.......D.........E........F In this string dots (.)
are not having fixed count in between of string. I want the
output to have string with one dot between. I.e.
A.B.C.D.E.F
Answer Posted / anuradha
SELECT REGEXP_REPLACE (
REPLACE ('A.B....C.......D.........E........F', '.', ' '),
'( ){2,}',
'.')
FROM DUAL;
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
How delete a row in sql?
What is information schema in sql?
What is a record in pl/sql?
How can we solve sql error: ora-00904: invalid identifier?
Does sap use sql?
What is the difference between count 1 and count (*) in a sql query?
Is truncate ddl or dml?
what is the use of friend function? : Sql dba
what is cursor and its type, what is ref cursor write a syntax to pass ref cursor into procedure out fucntion and call the procedure
Why is stored procedure faster than query?
What is sql and db2?
What is java sql connection?
How many types of sql are there?
Why is theta join required?
Does truncate need commit?