1e7b4 How to strip out non numeric characters in a query
Sign Up |  Live StatsLive Stats    Articles 37,330| Comments 177,252| Members 19,411, Newest Mongaloidicspasm| Online 430
Home Contact
 (Forgotten?): 
    Sikhism
    For best SPN experience, use Firefox Internet Browser!


                                                                   Your Banner Here!    




Click Here to Register/Sign Up Daily Hukamnama Member Blogs Downloads Website Navigation Help Fonts Tags
Sikh Philosophy Network » Sikh Philosophy Network » Current News » Information Technology » How to strip out non numeric characters in a query

How to strip out non numeric characters in a query

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 500 USD, Received: 115 USD (23%)
Please Donate...
     
Related Topics...
Thread Thread Starter Forum Replies Last Post
Cops Appeal for Help in Strip Mall Murder (North York, CA) spnadmin Community Out-Reach 0 11-Feb-2011 03:56 AM
KPS Gill a convict, strip him of Padma Shri: Rupan Deol Narayanjot Kaur Hard Talk 1 14-Feb-2010 11:46 AM
STrip path of a file SF Information Technology 7 28-Jul-2006 08:16 AM
Month in Numeric & Alpha KarenY Information Technology 7 14-Nov-2005 15:28 PM
Need Help Extracting Alpha Numeric Data jturner Information Technology 1 01-Nov-2005 13:40 PM


Tags
strip, non, numeric, characters, query
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:25 AM
tom's Avatar tom
Guest
 
Posts: n/a
   
   
How to strip out non numeric characters in a query

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
I need to strip out all the non numeric characters
in a query. Please advise how to do this.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/11936-how-strip-out-non-numeric-characters.html



*







Got anything to share on This Topic? Why not share your immediate thoughts/reaction with us! Login Now! or Sign Up Today! to share your views... Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:25 AM
Ken Snell \(MVP\)'s Avatar Ken Snell \(MVP\)
Guest
 
Posts: n/a
   
   
Re: How to strip out non numeric characters in a query

Here is a function that will do this:

'********************************
'* *
'* Fxn StripAllNonNumericChars *
'* *
'********************************

' ** This function strips all nonnumeric characters from a text string.

Function StripAllNonNumericChars(strOriginalString As String) As String
Dim blnStrip As Boolean
Dim intLoop As Integer
Dim lngLoop As Long
Dim strTemp As String, strChar As String
On Error Resume Next
For lngLoop = Len(strOriginalString) To 1 Step -1
blnStrip = True
strChar = Mid(strOriginalString, lngLoop, 1)
For intLoop = Asc("0") To Asc("9")
If strChar = Chr(intLoop) Then
blnStrip = False
Exit For
End If
Next intLoop
If blnStrip = False Then strTemp = strChar & strTemp
Next lngLoop
StripAllNonNumericChars = strTemp
Exit Function
End Function


--

Ken Snell


"tom" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
news:QvEmg.48978$fb2.45087@newssvr27.news.prodigy. net...
>I need to strip out all the non numeric characters
> in a query. Please advise how to do this.
>


Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936

Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:25 AM
Tom's Avatar Tom
Guest
 
Posts: n/a
   
   
Re: How to strip out non numeric characters in a query

WOW!!!!!

That is a real mouthfull.

What I really need is the following:

substring(string from pattern)

Extract substring matching POSIX regular expression


"Ken Snell (MVP)" wrote in message news:ud2$KvklGHA.2128@TK2MSFTNGP04.phx.gbl...
> Here is a function that will do this:
>
> '********************************
> '* *
> '* Fxn StripAllNonNumericChars *
> '* *
> '********************************
>
> ' ** This function strips all nonnumeric characters from a text string.
>
> Function StripAllNonNumericChars(strOriginalString As String) As String
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> Dim blnStrip As Boolean
> Dim intLoop As Integer
> Dim lngLoop As Long
> Dim strTemp As String, strChar As String
> On Error Resume Next
> For lngLoop = Len(strOriginalString) To 1 Step -1
> blnStrip = True
> strChar = Mid(strOriginalString, lngLoop, 1)
> For intLoop = Asc("0") To Asc("9")
> If strChar = Chr(intLoop) Then
> blnStrip = False
> Exit For
> End If
> Next intLoop
> If blnStrip = False Then strTemp = strChar & strTemp
> Next lngLoop
> StripAllNonNumericChars = strTemp
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> Exit Function
> End Function
>
>
> --
>
> Ken Snell
>
>
> "tom" wrote in message
> news:QvEmg.48978$fb2.45087@newssvr27.news.prodigy. net...
> >I need to strip out all the non numeric characters
> > in a query. Please advise how to do this.
> >

>
>



Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:25 AM
Ken Snell \(MVP\)'s Avatar Ken Snell \(MVP\)
Guest
 
Posts: n/a
   
   
Re: How to strip out non numeric characters in a query

Unfortunately, I am not knowledgeable about REGEX and similar types of
pattern matching. John Nurick and Douglas Steele (both MVPs) are, however; I
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
will "ping" them to take a look at this thread.


--

Ken Snell


"Tom" wrote in message
news:5uGdnV9vrtjbzQbZnZ2dnUVZ_rWdnZ2d@comcast.com. ..
> WOW!!!!!
>
> That is a real mouthfull.
>
> What I really need is the following:
>
> substring(string from pattern)
>
> Extract substring matching POSIX regular expression
>
>
> "Ken Snell (MVP)" wrote in message
> news:ud2$KvklGHA.2128@TK2MSFTNGP04.phx.gbl...
>> Here is a function that will do this:
>>
>> '********************************
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
>> '* *
>> '* Fxn StripAllNonNumericChars *
>> '* *
>> '********************************
>>
>> ' ** This function strips all nonnumeric characters from a text string.
>>
>> Function StripAllNonNumericChars(strOriginalString As String) As String
>> Dim blnStrip As Boolean
>> Dim intLoop As Integer
>> Dim lngLoop As Long
>> Dim strTemp As String, strChar As String
>> On Error Resume Next
>> For lngLoop = Len(strOriginalString) To 1 Step -1
>> blnStrip = True
>> strChar = Mid(strOriginalString, lngLoop, 1)
>> For intLoop = Asc("0") To Asc("9")
>> If strChar = Chr(intLoop) Then
>> blnStrip = False
>> Exit For
>> End If
>> Next intLoop
>> If blnStrip = False Then strTemp = strChar & strTemp
>> Next lngLoop
>> StripAllNonNumericChars = strTemp
>> Exit Function
>> End Function
>>
>>
>> --
>>
>> Ken Snell
>>
>>
>> "tom" wrote in message
>> news:QvEmg.48978$fb2.45087@newssvr27.news.prodigy. net...
>> >I need to strip out all the non numeric characters
>> > in a query. Please advise how to do this.
>> >

>>
>>

>
>



Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:25 AM
Graham R Seach's Avatar Graham R Seach
Guest
 
Posts: n/a
   
   
Re: How to strip out non numeric characters in a query

Tom,

Firstly, add the following to a standard module:

Public Enum StripType
se_Char = &H1
se_Num = &H2
se_NonWord = &H4
se_Space = &H8
se_AllButChar = &H10
se_AllButNum = &H20
se_Custom = &H40
End Enum

Public Function StripEx(sText As String, lExpr As StripType, Optional
sUsrExpr As String = "") As String
'-------------------------------------------------------------------------------
' Function to selectively strip any combination of the following from a
string:
' Characters (a-z or A-Z)
' Numbers (0-9)
' Non-Word characters (~!@#$%, etc. Anything other than a-z, A-Z, 0-9)
' Spaces
'-------------------------------------------------------------------------------

Dim objRegEx As Object
Dim sRegExpr As String

Set objRegEx = CreateObject("VBScript.RegExp")
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936

If lExpr And se_Custom Then
'User-defined expression
sRegExpr = sUsrExpr
ElseIf lExpr And se_AllButChar Then
'Strip out everything except alpha characters
sRegExpr = "[^a-zA-Z]"
ElseIf lExpr And se_AllButNum Then
'Strip out everything except numbers
sRegExpr = "\D"
Else
'Custom strip
If lExpr And se_Char Then sRegExpr = "[a-zA-Z]"
If lExpr And se_Num Then sRegExpr = sRegExpr & IIf(Len(sRegExpr) >
0, "|", "") & "\d"
If lExpr And se_NonWord Then sRegExpr = sRegExpr & IIf(Len(sRegExpr)
> 0, "|", "") & "\W"

If lExpr And se_Space Then sRegExpr = sRegExpr & IIf(Len(sRegExpr) >
0, "|", "") & "\s"
End If
'Debug.Print "Regular Expression: " & sRegExpr
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936

With objRegEx
.Pattern = sRegExpr
.Global = True
StripEx = .Replace(sText, "")
End With

Set objRegEx = Nothing
End Function

You can then call this function from your query:
SELECT StripEx(myqueryfield, 32) As numbersonly
FROM tblMyTable

Regards,
Graham R Seach
Microsoft Access MVP
Canberra, Australia
---------------------------

"tom" wrote in message
news:QvEmg.48978$fb2.45087@newssvr27.news.prodigy. net...
>I need to strip out all the non numeric characters
> in a query. Please advise how to do this.
>



Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:25 AM
tom's Avatar tom
Guest
 
Posts: n/a
   
   
Re: How to strip out non numeric characters in a query

The code wouldnt compile


"Graham R Seach" wrote in message
news:upVZavqlGHA.3528@TK2MSFTNGP02.phx.gbl...
> Tom,
>
> Firstly, add the following to a standard module:
>
> Public Enum StripType
> se_Char = &H1
> se_Num = &H2
> se_NonWord = &H4
> se_Space = &H8
> se_AllButChar = &H10
> se_AllButNum = &H20
> se_Custom = &H40
> End Enum
>
> Public Function StripEx(sText As String, lExpr As StripType, Optional
> sUsrExpr As String = "") As String
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> '-------------------------------------------------------------------------------
> ' Function to selectively strip any combination of the following from a
> string:
> ' Characters (a-z or A-Z)
> ' Numbers (0-9)
> ' Non-Word characters (~!@#$%, etc. Anything other than a-z, A-Z, 0-9)
> ' Spaces
> '-------------------------------------------------------------------------------
>
> Dim objRegEx As Object
> Dim sRegExpr As String
>
> Set objRegEx = CreateObject("VBScript.RegExp")
>
> If lExpr And se_Custom Then
> 'User-defined expression
> sRegExpr = sUsrExpr
> ElseIf lExpr And se_AllButChar Then
> 'Strip out everything except alpha characters
> sRegExpr = "[^a-zA-Z]"
> ElseIf lExpr And se_AllButNum Then
> 'Strip out everything except numbers
> sRegExpr = "\D"
> Else
> 'Custom strip
> If lExpr And se_Char Then sRegExpr = "[a-zA-Z]"
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> If lExpr And se_Num Then sRegExpr = sRegExpr & IIf(Len(sRegExpr) >
> 0, "|", "") & "\d"
> If lExpr And se_NonWord Then sRegExpr = sRegExpr &
> IIf(Len(sRegExpr)
> > 0, "|", "") & "\W"

> If lExpr And se_Space Then sRegExpr = sRegExpr & IIf(Len(sRegExpr)
> > 0, "|", "") & "\s"

> End If
> 'Debug.Print "Regular Expression: " & sRegExpr
>
> With objRegEx
> .Pattern = sRegExpr
> .Global = True
> StripEx = .Replace(sText, "")
> End With
>
> Set objRegEx = Nothing
> End Function
>
> You can then call this function from your query:
> SELECT StripEx(myqueryfield, 32) As numbersonly
> FROM tblMyTable
>
> Regards,
> Graham R Seach
> Microsoft Access MVP
> Canberra, Australia
> ---------------------------
>
> "tom" wrote in message
> news:QvEmg.48978$fb2.45087@newssvr27.news.prodigy. net...
>>I need to strip out all the non numeric characters
>> in a query. Please advise how to do this.
>>

>
>



Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:25 AM
tom's Avatar tom
Guest
 
Posts: n/a
   
   
Re: How to strip out non numeric characters in a query

Your code works but when I try to use it in a join
with a another table with text field, I am getting
a data type mismatch. Some of the entries are coming
up #error. Could that be the problem?


"Ken Snell (MVP)" wrote in message
news:ud2$KvklGHA.2128@TK2MSFTNGP04.phx.gbl...
> Here is a function that will do this:
>
> '********************************
> '* *
> '* Fxn StripAllNonNumericChars *
> '* *
> '********************************
>
> ' ** This function strips all nonnumeric characters from a text string.
>
> Function StripAllNonNumericChars(strOriginalString As String) As String
> Dim blnStrip As Boolean
> Dim intLoop As Integer
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> Dim lngLoop As Long
> Dim strTemp As String, strChar As String
> On Error Resume Next
> For lngLoop = Len(strOriginalString) To 1 Step -1
> blnStrip = True
> strChar = Mid(strOriginalString, lngLoop, 1)
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> For intLoop = Asc("0") To Asc("9")
> If strChar = Chr(intLoop) Then
> blnStrip = False
> Exit For
> End If
> Next intLoop
> If blnStrip = False Then strTemp = strChar & strTemp
> Next lngLoop
> StripAllNonNumericChars = strTemp
> Exit Function
> End Function
>
>
> --
>
> Ken Snell
>
>
> "tom" wrote in message
> news:QvEmg.48978$fb2.45087@newssvr27.news.prodigy. net...
>>I need to strip out all the non numeric characters
>> in a query. Please advise how to do this.
>>

>
>



Reply With Quote
  #8 (permalink)  
Old 28-Jul-2006, 08:25 AM
Douglas J Steele's Avatar Douglas J Steele
Guest
 
Posts: n/a
   
   
Re: How to strip out non numeric characters in a query

Did you correct for the word-wrap in Graham's code?

The 3 lines of code

If lExpr And se_Num Then sRegExpr = sRegExpr & IIf(Len(sRegExpr) >
0, "|", "") & "\d"
If lExpr And se_NonWord Then sRegExpr = sRegExpr & IIf(Len(sRegExpr)
0, "|", "") & "\W"
If lExpr And se_Space Then sRegExpr = sRegExpr & IIf(Len(sRegExpr)
0, "|", "") & "\s"

should each be one line each. Try the following instead:

If lExpr And se_Num Then
sRegExpr = sRegExpr & _
IIf(Len(sRegExpr) > 0, "|", "") & "\d"
End If
If lExpr And se_NonWord Then
sRegExpr = sRegExpr & _
IIf(Len(sRegExpr) > 0, "|", "") & "\W"
End If
If lExpr And se_Space Then
sRegExpr = sRegExpr & _
IIf(Len(sRegExpr) > 0, "|", "") & "\s"
End If

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"tom" wrote in message
news:HaWmg.155894$F_3.34023@newssvr29.news.prodigy .net...
> The code wouldnt compile
>
>
> "Graham R Seach" wrote in message
> news:upVZavqlGHA.3528@TK2MSFTNGP02.phx.gbl...
> > Tom,
> >
> > Firstly, add the following to a standard module:
> >
> > Public Enum StripType
> > se_Char = &H1
> > se_Num = &H2
> > se_NonWord = &H4
> > se_Space = &H8
> > se_AllButChar = &H10
> > se_AllButNum = &H20
> > se_Custom = &H40
> > End Enum
> >
> > Public Function StripEx(sText As String, lExpr As StripType, Optional
> > sUsrExpr As String = "") As String
> >

'---------------------------------------------------------------------------
----
> > ' Function to selectively strip any combination of the following from a
> > string:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> > ' Characters (a-z or A-Z)
> > ' Numbers (0-9)
> > ' Non-Word characters (~!@#$%, etc. Anything other than a-z, A-Z, 0-9)
> > ' Spaces
> >

'---------------------------------------------------------------------------
----
> >
> > Dim objRegEx As Object
> > Dim sRegExpr As String
> >
> > Set objRegEx = CreateObject("VBScript.RegExp")
> >
> > If lExpr And se_Custom Then
> > 'User-defined expression
> > sRegExpr = sUsrExpr
> > ElseIf lExpr And se_AllButChar Then
> > 'Strip out everything except alpha characters
> > sRegExpr = "[^a-zA-Z]"
> > ElseIf lExpr And se_AllButNum Then
> > 'Strip out everything except numbers
> > sRegExpr = "\D"
> > Else
> > 'Custom strip
> > If lExpr And se_Char Then sRegExpr = "[a-zA-Z]"
> > If lExpr And se_Num Then sRegExpr = sRegExpr & IIf(Len(sRegExpr)

>
> > 0, "|", "") & "\d"
> > If lExpr And se_NonWord Then sRegExpr = sRegExpr &
> > IIf(Len(sRegExpr)
> > > 0, "|", "") & "\W"

> > If lExpr And se_Space Then sRegExpr = sRegExpr &

IIf(Len(sRegExpr)
> > > 0, "|", "") & "\s"

> > End If
> > 'Debug.Print "Regular Expression: " & sRegExpr
> >
> > With objRegEx
> > .Pattern = sRegExpr
> > .Global = True
> > StripEx = .Replace(sText, "")
> > End With
> >
> > Set objRegEx = Nothing
> > End Function
> >
> > You can then call this function from your query:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> > SELECT StripEx(myqueryfield, 32) As numbersonly
> > FROM tblMyTable
> >
> > Regards,
> > Graham R Seach
> > Microsoft Access MVP
> > Canberra, Australia
> > ---------------------------
> >
> > "tom" wrote in message
> > news:QvEmg.48978$fb2.45087@newssvr27.news.prodigy. net...
> >>I need to strip out all the non numeric characters
> >> in a query. Please advise how to do this.
> >>

> >
> >

>
>



Reply With Quote
  #9 (permalink)  
Old 28-Jul-2006, 08:25 AM
tom's Avatar tom
Guest
 
Posts: n/a
   
   
Re: How to strip out non numeric characters in a query

  Donate Today!  
The problem is with the enum. I am using
Access 97. I am worried about upgrading for
fear of breaking the code I have there.

Is there problems with upgrading from Access 97.


"Douglas J Steele" wrote in message
news:e9800OvlGHA.3576@TK2MSFTNGP04.phx.gbl...
> Did you correct for the word-wrap in Graham's code?
>
> The 3 lines of code
>
> If lExpr And se_Num Then sRegExpr = sRegExpr & IIf(Len(sRegExpr) >
> 0, "|", "") & "\d"
> If lExpr And se_NonWord Then sRegExpr = sRegExpr &
> IIf(Len(sRegExpr)
> 0, "|", "") & "\W"
> If lExpr And se_Space Then sRegExpr = sRegExpr & IIf(Len(sRegExpr)
> 0, "|", "") & "\s"
>
> should each be one line each. Try the following instead:
>
> If lExpr And se_Num Then
> sRegExpr = sRegExpr & _
> IIf(Len(sRegExpr) > 0, "|", "") & "\d"
> End If
> If lExpr And se_NonWord Then
> sRegExpr = sRegExpr & _
> IIf(Len(sRegExpr) > 0, "|", "") & "\W"
> End If
> If lExpr And se_Space Then
> sRegExpr = sRegExpr & _
> IIf(Len(sRegExpr) > 0, "|", "") & "\s"
> End If
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (no e-mails, please!)
>
>
> "tom" wrote in message
> news:HaWmg.155894$F_3.34023@newssvr29.news.prodigy .net...
>> The code wouldnt compile
>>
>>
>> "Graham R Seach" wrote in message
>> news:upVZavqlGHA.3528@TK2MSFTNGP02.phx.gbl...
>> > Tom,
>> >
>> > Firstly, add the following to a standard module:
>> >
>> > Public Enum StripType
>> > se_Char = &H1
>> > se_Num = &H2
>> > se_NonWord = &H4
>> > se_Space = &H8
>> > se_AllButChar = &H10
>> > se_AllButNum = &H20
>> > se_Custom = &H40
>> > End Enum
>> >
>> > Public Function StripEx(sText As String, lExpr As StripType, Optional
>> > sUsrExpr As String = "") As String
>> >

> '---------------------------------------------------------------------------
> ----
>> > ' Function to selectively strip any combination of the following from a
>> > string:
>> > ' Characters (a-z or A-Z)
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
>> > ' Numbers (0-9)
>> > ' Non-Word characters (~!@#$%, etc. Anything other than a-z, A-Z,
>> > 0-9)
>> > ' Spaces
>> >

> '---------------------------------------------------------------------------
> ----
>> >
>> > Dim objRegEx As Object
>> > Dim sRegExpr As String
>> >
>> > Set objRegEx = CreateObject("VBScript.RegExp")
>> >
>> > If lExpr And se_Custom Then
>> > 'User-defined expression
>> > sRegExpr = sUsrExpr
>> > ElseIf lExpr And se_AllButChar Then
>> > 'Strip out everything except alpha characters
>> > sRegExpr = "[^a-zA-Z]"
>> > ElseIf lExpr And se_AllButNum Then
>> > 'Strip out everything except numbers
>> > sRegExpr = "\D"
>> > Else
>> > 'Custom strip
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
>> > If lExpr And se_Char Then sRegExpr = "[a-zA-Z]"
>> > If lExpr And se_Num Then sRegExpr = sRegExpr & IIf(Len(sRegExpr)

>>
>> > 0, "|", "") & "\d"
>> > If lExpr And se_NonWord Then sRegExpr = sRegExpr &
>> > IIf(Len(sRegExpr)
>> > > 0, "|", "") & "\W"
>> > If lExpr And se_Space Then sRegExpr = sRegExpr &

> IIf(Len(sRegExpr)
>> > > 0, "|", "") & "\s"
>> > End If
>> > 'Debug.Print "Regular Expression: " & sRegExpr
>> >
>> > With objRegEx
>> > .Pattern = sRegExpr
>> > .Global = True
>> > StripEx = .Replace(sText, "")
>> > End With
>> >
>> > Set objRegEx = Nothing
>> > End Function
>> >
>> > You can then call this function from your query:
>> > SELECT StripEx(myqueryfield, 32) As numbersonly
>> > FROM tblMyTable
>> >
>> > Regards,
>> > Graham R Seach
>> > Microsoft Access MVP
>> > Canberra, Australia
>> > ---------------------------
>> >
>> > "tom" wrote in message
>> > news:QvEmg.48978$fb2.45087@newssvr27.news.prodigy. net...
>> >>I need to strip out all the non numeric characters
>> >> in a query. Please advise how to do this.
>> >>
>> >
>> >

>>
>>

>
>



Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

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 On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Active Discussions
Do you believe in...
Today 08:18 AM
193 Replies, 4,018 Views
Black Sikhs?
Today 06:33 AM
20 Replies, 5,747 Views
Man Driving Without...
Today 05:06 AM
5 Replies, 110 Views
Request for assistance...
Today 04:24 AM
8 Replies, 70 Views
Losing My Religion: Why...
Today 03:03 AM
13 Replies, 313 Views
Health Exercise And...
Today 02:10 AM
1 Replies, 71 Views
Sikh Spokesman (ਪੰਜਾਬੀ...
Today 02:10 AM
176 Replies, 4,499 Views
How Religions Change...
Today 02:07 AM
1 Replies, 97 Views
Keeping Amrit Vela
Today 01:57 AM
11 Replies, 889 Views
Rozana Reports (ਪੰਜਾਬੀ...
Today 01:52 AM
313 Replies, 7,574 Views
How does Sikhi help you...
Yesterday 22:54 PM
22 Replies, 889 Views
Panjabi
By Ishna
Yesterday 17:56 PM
12 Replies, 264 Views
Parkash Guru Amar Das ji...
Yesterday 17:07 PM
3 Replies, 50 Views
Serious challenges to...
Yesterday 16:49 PM
0 Replies, 113 Views
Sikh man fights for his...
Yesterday 16:46 PM
0 Replies, 79 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 08:28 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.72357 seconds with 32 queries
0