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
Do prepared statements prevent sql injection?
Is it possible to link two groups inside a cross products after the cross products group has been created?
What are the rules to be applied to nulls whilst doing comparisons?
Is it possible to pass parameters to triggers?
Define commit?
What is an inner join sql?
What is difference between nchar and nvarchar?
Do ddl statements need commit?
What is the difference between inner join and outer join?
What is an intersect?
How global cursor can be declare with dynamic trigger ?
what is a cursor? : Sql dba
What view means?
What is rowid in sql?
What is pl sql variable?