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 / dilip kumar
SELECT REGEXP_REPLACE (
Replace ('A.B....C.......D.........E........F', '.', ' '),
'( ){1,}',
'.')
FROM DUAL;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is program debugging?
What is sqlservr exe?
What is not equal in sql?
How to read/write files from pl/sql?
What are the types of subqueries?
Is and as keyword in pl sql?
What is the use of stored procedures?
Does pl sql work in mysql?
Does sqlite need a server?
What is a natural join sql?
Which table is left in join?
What is form and report?
what is commit? : Sql dba
Write a unique difference between a function and a stored procedure.
What are stored procedures used for?