No announcements
Found 1158522 threads
-
6 Votes
seperate numeric value from a alphanumeric
hi all, can i have solution for seperate numeric value from a alphanumeric \ example ...Answered | 3 Replies | 2986 Views | Created by zubair KDNL - Thursday, May 21, 2009 9:55 AM | Last reply by zubair KDNL - Friday, May 22, 2009 6:48 AM -
5 Votes
how to remove alphanumeric characters from numeric value
You want to clean the data, not exclude non-numeric data, correct?Answered | 5 Replies | 5394 Views | Created by ds_999 - Tuesday, January 15, 2019 11:40 AM | Last reply by TheBrenda - Monday, January 28, 2019 9:43 PM -
2 Votes
Order By mix alphanumeric numeric
The logic was that first all alphabets, then all numeric.Answered | 4 Replies | 5356 Views | Created by sqlserverdotnet - Sunday, November 8, 2009 4:49 AM | Last reply by sqlserverdotnet - Sunday, November 8, 2009 11:43 PM -
0 Votes
Need help with extracting numeric from alphanumeric.
Most likely you are better of writing a CLR function where you can use the RegEx classes to extract the number.Answered | 6 Replies | 977 Views | Created by Matt_90 - Monday, March 7, 2016 9:22 AM | Last reply by Matt_90 - Tuesday, March 8, 2016 5:28 AM -
0 Votes
RegExp - VB.Net - pattern for not including all numerics but include alphanumeric
,([A-Za-z0-9]+)+$) Test,Client 100,000 John,Smith 23,009 I would like to modify above regexp to only ...Answered | 2 Replies | 5769 Views | Created by Harris001 - Monday, May 23, 2011 1:56 PM | Last reply by Paul Zhou - Wednesday, June 1, 2011 6:01 AM -
0 Votes
How to find similar numeric or alphanumeric in millions of record
Try this: create table #t(id varchar(12)) insert into #t values ('110040402811') insert into #t values ('110040402820') insert into #t values ('110040402841') insert ...Answered | 7 Replies | 2102 Views | Created by Rohit_shukla - Thursday, June 13, 2013 6:51 AM | Last reply by JRStern - Saturday, June 22, 2013 5:12 PM -
0 Votes
Alphanumeric input in WPF Textbox
If that's OK as well, take a look here .Answered | 2 Replies | 7696 Views | Created by Varsha Sharma - Thursday, March 25, 2010 2:03 PM | Last reply by Varsha Sharma - Monday, April 5, 2010 5:20 AM -
0 Votes
Sorting Nvarchar values where some values are numeric
FYI, I want to incorporate that into an order by statement on a column of nvarchar values which has a mix of numerics and alphanumeric values.Answered | 4 Replies | 1868 Views | Created by Petey100 - Thursday, May 9, 2013 2:46 PM | Last reply by Petey100 - Thursday, May 9, 2013 6:18 PM -
0 Votes
Alphanumeric string RightToLeft error
Do you want the reversal only to occur for apha numeric strings?Answered | 3 Replies | 2750 Views | Created by soma 3slia - Monday, March 30, 2009 4:27 PM | Last reply by Ganesh Ranganathan - Bangalore, India - Tuesday, March 31, 2009 8:27 AM -
0 Votes
Alphanumeric values-
hello; like to input a simple value like 2, we use scanf("&d", x); provided we have already entered #include<stdio> and int ...Answered | 4 Replies | 467 Views | Created by Azzzzhar - Thursday, April 28, 2016 12:07 PM | Last reply by Hart Wang - Friday, April 29, 2016 8:11 AM -
0 Votes
Opening parenthesis detected as alphanumeric
I'm seeking alphanumeric strings and I want to handle punctuation separately, for several reasons; however, in the following ...Answered | 3 Replies | 4843 Views | Created by andrewwyld - Thursday, January 13, 2011 9:39 PM | Last reply by andrewwyld - Friday, January 14, 2011 11:58 AM -
4 Votes
about alphanumeric characters in c language
For your kind information c has a function name as isalnum() to check whether character is alpha numeric or not.Answered | 10 Replies | 3359 Views | Created by kirthiga000 - Sunday, October 6, 2013 10:47 AM | Last reply by Barry-Schwarz - Thursday, October 10, 2013 12:52 PM -
4 Votes
Sorting alphanumeric values in descending order in C#
here is a fast alphanumeric sort (can be used for other sorts with numerics too).Answered | 7 Replies | 30639 Views | Created by WinFORs - Monday, February 20, 2012 4:02 AM | Last reply by Dummy yoyo - Wednesday, February 22, 2012 2:50 AM -
4 Votes
Non-alphanumeric characters required: 1
symbols (e.g !Answered | 10 Replies | 24561 Views | Created by gerten_ua - Thursday, January 11, 2007 11:54 PM | Last reply by noni pari - Sunday, August 21, 2011 6:39 AM -
0 Votes
regular expression only for alphanumeric
Please have a look on below code which else code block explains that how to identity character in a give string which are not alphanumeric.Answered | 16 Replies | 7696 Views | Created by techasuran - Friday, August 26, 2016 12:13 PM | Last reply by Sandeep Shekhawat - Saturday, August 27, 2016 8:40 AM -
6 Votes
Richtextbox Spell Checking ignore case and alphanumeric possible?
There should be methods to expose the word being checked for spelling so that ignore case and alpha numeric can be setAnswered | 6 Replies | 1292 Views | Created by codelady03 - Thursday, June 12, 2014 5:53 PM | Last reply by codelady03 - Tuesday, July 14, 2015 3:10 PM -
0 Votes
MsSQL Auto increment Alphanumeric IT001, IT002
if exists (select * from sysobjects where id = object_id(N'[dbo].Answered | 4 Replies | 8283 Views | Created by CR Anandan - Tuesday, October 28, 2014 10:13 AM | Last reply by CR Anandan - Friday, October 31, 2014 11:16 AM -
0 Votes
Using If Staments for accepting Alphanumeric data in Textboxes only
Good Afternoon Sir and Madam Can You help me find an If statement command that only accepts Alphanumeric data in textboxes In Visual Basic 2015 Express?Answered | 6 Replies | 671 Views | Created by JAMES VISUAL BASIC LOVER 495 - Monday, November 28, 2016 7:58 PM | Last reply by Neda Zhang - Tuesday, November 29, 2016 7:51 AM -
0 Votes
WHERE Alphanumeric = Numeric
how about this Select *From yourTable where YourAlphanumerickey=Cast(yournumericcolumn As ...Answered | 2 Replies | 5198 Views | Created by Ironworks_Scott - Thursday, December 20, 2007 2:32 PM | Last reply by Ironworks_Scott - Thursday, December 20, 2007 3:05 PM -
1 Votes
isnull function on numeric fields
As Alphanumeric support both 0 and blank it works but the numeric type doesn't support blank.Answered | 4 Replies | 9654 Views | Created by PHounshell - Monday, August 10, 2015 3:46 PM | Last reply by Sethu Madhavan R - Tuesday, August 11, 2015 6:34 AM - Items 1 to 20 of 1158522 Next ›
No announcements