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 / sunaksha
select REGEXP_REPLACE ('A.B....C.......D.........E........F','.{1,}',
'.') FROM DUAL;
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are the benefits of pl/sql packages?
How many parts of a pl sql block are optional?
What is aggregate function in sql?
What is dialect in sql?
Is crud a cuss word?
What is record type in pl sql?
what is the use of anchoring object? what r the difference between anchoring object & enclosing object? can any one tell me all the details?
What is the benefit of foreign key?
How do you explain an index?
Which is faster truncate or drop?
how to show all tables with 'mysql'? : Sql dba
What are the types of queries in sql?
Is sql sequential or random?
What is compute?
Is trigger a stored procedure?