PC Review


Reply
Thread Tools Rate Thread

Change the order of the letters in a string

 
 
=?Utf-8?B?T2ZlciBDb2hlbg==?=
Guest
Posts: n/a
 
      30th Aug 2006
Is there a build in function in Access that replace the order of the letters
in a string?
for example: I have a field in a table that has a value "refO"

I would like a function that returns "Ofer"

I have a function that I created, but I'm just wondering if there is a build
in function.
Thanks for your help
Ofer
--
BS"D
 
Reply With Quote
 
 
 
 
KML
Guest
Posts: n/a
 
      30th Aug 2006

StrReverse()

as in...

Private Sub cmdReverseString_Click()

Dim startingstring

startingstring = InputBox("Enter your string")

MsgBox ("Starting String = " & startingstring & Chr(13) & _
"Reverse String = " & StrReverse(startingstring))

End Sub

Ofer Cohen wrote:
> Is there a build in function in Access that replace the order of the letters
> in a string?
> for example: I have a field in a table that has a value "refO"
>
> I would like a function that returns "Ofer"
>
> I have a function that I created, but I'm just wondering if there is a build
> in function.
> Thanks for your help
> Ofer
> --
> BS"D


 
Reply With Quote
 
=?Utf-8?B?T2ZlciBDb2hlbg==?=
Guest
Posts: n/a
 
      30th Aug 2006
Thank you,
I had a feeling that such a function exist, but I couldn't remember the name
of it.

Thanks again

--
BS"D


"KML" wrote:

>
> StrReverse()
>
> as in...
>
> Private Sub cmdReverseString_Click()
>
> Dim startingstring
>
> startingstring = InputBox("Enter your string")
>
> MsgBox ("Starting String = " & startingstring & Chr(13) & _
> "Reverse String = " & StrReverse(startingstring))
>
> End Sub
>
> Ofer Cohen wrote:
> > Is there a build in function in Access that replace the order of the letters
> > in a string?
> > for example: I have a field in a table that has a value "refO"
> >
> > I would like a function that returns "Ofer"
> >
> > I have a function that I created, but I'm just wondering if there is a build
> > in function.
> > Thanks for your help
> > Ofer
> > --
> > BS"D

>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
change all CAP letters to small case letters Danny Microsoft Word Document Management 2 15th Jun 2008 04:20 PM
How to change from capital letters to small letters and vice versa Tobias Microsoft Word Document Management 1 3rd Dec 2007 12:39 PM
how to change small letters to capital letters =?Utf-8?B?SE9XIFRPIENIQU5HRQ==?= Microsoft Excel Misc 4 30th May 2007 01:12 AM
How do change a column of data in capitol letters to small letters =?Utf-8?B?QmFyYiBQLg==?= Microsoft Excel Misc 6 15th Nov 2006 06:17 PM
change lower letters to upper letters =?Utf-8?B?V2lubmll?= Microsoft Excel Misc 2 15th Sep 2006 04:58 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:52 PM.