1e244 How to strip out non numeric characters in a query
Sign Up |  Live StatsLive Stats    Articles 37,329| Comments 177,222| Members 19,409, Newest tanu sandhu| Online 471
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
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
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.
>

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
> Dim blnStrip As Boolean
> Dim intLoop As Integer
> Dim lngLoop As Long
> Dim strTemp As String, strChar As String
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> 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
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> 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
  #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
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:
>>
>> '********************************
>> '* *
>> '* 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
>>
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
>>
>> "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")

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
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
'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) >
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
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
  #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]"
> 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.
>>

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



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
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
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
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
> 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...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> > 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")
> >
> > 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
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
> > 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
  #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
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11936
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)
>> > ' 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:
>> > SELECT StripEx(myqueryfield, 32) As numbersonly
>> > FROM tblMyTable
>> >
>> > Regards,
>> > Graham R Seach
>> > Microsoft Access MVP
>> > Canberra, Australia
>> > ---------------------------
>> >
>> > "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.
>> >>
>> >
>> >

>>
>>

>
>



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
Man Driving Without...
Today 21:09 PM
1 Replies, 25 Views
Keeping Amrit Vela
Today 21:08 PM
9 Replies, 815 Views
Request for assistance...
Today 19:29 PM
4 Replies, 34 Views
Do you believe in...
Today 18:11 PM
188 Replies, 3,956 Views
Panjabi
By Ishna
Today 17:56 PM
12 Replies, 258 Views
Parkash Guru Amar Das ji...
Today 17:07 PM
3 Replies, 27 Views
Serious challenges to...
Today 16:49 PM
0 Replies, 36 Views
Sikh man fights for his...
Today 16:46 PM
0 Replies, 42 Views
Sikhs Rights Group to...
Today 16:44 PM
0 Replies, 30 Views
Haryana Sikh body bans...
Today 16:39 PM
0 Replies, 30 Views
How does Sikhi help you...
Today 15:00 PM
21 Replies, 856 Views
Health Exercise And...
Today 13:30 PM
0 Replies, 52 Views
SSGS with English...
Today 12:55 PM
9 Replies, 116 Views
Losing My Religion: Why...
Today 11:52 AM
11 Replies, 266 Views
Rozana Reports (ਪੰਜਾਬੀ...
Today 01:44 AM
310 Replies, 7,552 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 21:11 PM.
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.78548 seconds with 32 queries
0