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 / sreenivasulu sangatipalli
SELECT regexp_replace('A...B..C.D......E....F', '[.]+', '.') FROM DUAL;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Does truncate need commit?
What does stand for in sql?
What are actual parameters and formal parameters?
What is on delete set null?
How do I copy a table in sql?
what are rollup and cube in t-sql? : Transact sql
Why is partition used in sql?
How is pl sql different from sql?
Why do we use function in pl sql?
How do I run a script in sql developer?
How do we accept inputs from user during runtime?
What is sql indexing?
How do we use distinct statement? What is its use?
Explain constraints in sql?
Can we use insert statement in function?