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
Why we use pl sql?
Explain the structure of pl/sql in brief.
What plvcmt and plvrb does in pl/sql?
How does join work in sql?
Does pl/sql support create command?
What is the difference between pl and sql?
Can we use the cursor's to create the collection in PL/SQL?
What sql does db2 use?
What is union, minus and interact commands?
How do I start sql profiler?
what are the differences between public, private, protected, static, transient, final and volatile? : Sql dba
how do you login to mysql using unix shell? : Sql dba
How to install oracle sql developer?
How many sql core licenses do I need?
What will you get by the cursor attribute sql%notfound?