Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How can I convert strings efficiently?
Not a problem. The other translate method seems fine too.
The one i used was part of a bigger package which did things like clean up junk from a paragraph, convert first letter from lowercase to uppercase after a full stop etc. Dont have all that code on me but :-(
M
"Guido Konsolke" <Guido.Konsolke_at_triaton.com> wrote in message news:<1049295947.272539_at_news.thyssen.com>...
> "SoulSurvivor" wrote ...
> (snipped a bit)> >
> >
> > IF (ASCII(v_chr) >= 65 AND ASCII(v_chr) <= 90) OR -- A to Z
> > (ASCII(v_chr) >= 97 AND ASCII(v_chr) <= 122) OR -- a to z
> > (ASCII(v_chr) >= 48 AND ASCII(v_chr) <= 57) THEN -- 0 to 9
> (snipped even more)
> > Hi, > > thanks very much for taking the time to response. I really appreciate it. > I like the use of ASCII function, it didn't come to my mind. > But I think I'll go with what Andrew provided in his post because > I also have to convert capitals to lower letters. He put it in his example > so lazy me has got to do even less work ;-)) > > Bye, > GuidoReceived on Thu Apr 03 2003 - 08:34:23 CST
![]() |
![]() |