No announcements
Found 3250605 threads
-
0 Votes
How to Get Hex string with leading zeros
I am not using the STL is there any way available to get my job done Vaibhav MishraAnswered | 4 Replies | 2284 Views | Created by VaibhavMishra - Friday, February 15, 2013 11:51 AM | Last reply by WayneAKing - Friday, February 15, 2013 7:58 PM -
8 Votes
Hex leading zero; Is there a better way
Just specify ..ToString("X4") 4 becomes the precsion specifier so you will get a leading zero.Answered | 8 Replies | 20997 Views | Created by JRJohnson - Wednesday, March 24, 2010 12:56 AM | Last reply by Neal Macdonald - Friday, May 20, 2011 3:14 PM -
1 Votes
Want textbox to show Hex values including leading zeros
You can always just pad the resulting string with 0 values using PadLeft: txtReg0.Text = ...Answered | 1 Replies | 2079 Views | Created by gbtjom - Wednesday, November 23, 2011 9:59 PM | Last reply by Reed Copsey, Jr - Wednesday, November 23, 2011 10:03 PM -
0 Votes
Is there any built in method to add leading zeros to string?
Dim yourString As String yourString = "1000" yourString.PadLeft(4, ...Answered | 2 Replies | 3654 Views | Created by venakt - Tuesday, November 25, 2008 12:27 PM | Last reply by Jon Mitchell - Tuesday, November 25, 2008 12:35 PM -
1 Votes
Get DateTime.Now.Hour leading with zero/0
if I just use DateTime.Now.Hour.ToString(); I don't get with a zero/0 before!Answered | 5 Replies | 9757 Views | Created by WebbHelp - Saturday, November 6, 2010 12:41 AM | Last reply by WebbHelp - Sunday, November 7, 2010 1:22 AM -
3 Votes
remove leading and trailing zeros
you can iterate till you get rite result. you are on the right track.Answered | 12 Replies | 10372 Views | Created by DJ Rele - Wednesday, June 5, 2013 2:02 PM | Last reply by DJ Rele - Friday, June 7, 2013 3:56 AM -
0 Votes
Leading zeros in CSV file
You could convert the Column to String.Answered | 5 Replies | 4088 Views | Created by harikiran2010 - Sunday, September 13, 2015 7:33 AM | Last reply by ryguy72 - Wednesday, September 16, 2015 1:48 PM -
0 Votes
Convert a "hex" string to real hex
you can use scanf trick too http://forums.devshed.com/c-programming-42/convert-char-string-to-hex-format-586165.htmlAnswered | 8 Replies | 7638 Views | Created by cindyak - Monday, May 28, 2012 7:22 AM | Last reply by Tim Roberts - Friday, June 1, 2012 6:10 AM -
0 Votes
powerpivot and leading zeros
Hi- When I try to bring a .csv file, pipe delimited file into PowerPivot 2010, it always drops the leading zeros on text fields.Answered | 1 Replies | 1467 Views | Created by alexacurtis - Friday, June 17, 2016 7:46 PM | Last reply by Darren Gosbell - Monday, June 20, 2016 3:49 AM -
1 Votes
leading zero to numbers in csv in ssis
Or google how to retain leading zeros in excel and you might get some workaround but basically AFAIK every workaround ...Answered | 5 Replies | 17022 Views | Created by S Prashant - Friday, October 21, 2011 4:43 PM | Last reply by BIRocks - Sunday, December 4, 2011 4:27 PM -
1 Votes
how to Remove leading zeros from an XSLT
Hi Suresh, If you expect that the element might contain non-numeric characters so you can use an alternative way to remove these leading zeros as mentioned in ...Answered | 12 Replies | 12578 Views | Created by SureshRKumar - Monday, July 18, 2011 5:49 AM | Last reply by po_v - Wednesday, November 28, 2012 5:35 PM -
1 Votes
T-SQL remove leading zeroes in a string
To remove also the leading space add a space in square bracket and it is done ...Answered | 11 Replies | 25442 Views | Created by sph1777 - Thursday, August 25, 2016 12:24 PM | Last reply by Benjamin Moiroud - Thursday, August 25, 2016 3:36 PM -
0 Votes
Leading zero for Recno()
I am just curious how do you all know CaleCrow uses some textboxes?Answered | 10 Replies | 5887 Views | Created by CaleCrow - Friday, October 8, 2010 4:12 PM | Last reply by Pavel Celba - Friday, October 8, 2010 9:00 PM -
0 Votes
How to get Leading Zero in Single Digit Date using T-SQL ?
Hi friends, How can we get Leading Zero in Single Digit Date ?Answered | 5 Replies | 12916 Views | Created by SSRS New Bie Beginner - Tuesday, July 6, 2010 2:33 AM | Last reply by Christa Kurschat - Tuesday, July 6, 2010 9:19 AM -
1 Votes
Remove leading zeros from IP Address using regular expression
You should use regex The IP Address object will take leading zeros as octal rather than decimal.Answered | 8 Replies | 9111 Views | Created by tBStar - Thursday, March 29, 2012 4:07 PM | Last reply by Perter - Tuesday, February 25, 2014 8:33 PM -
0 Votes
round - show leading zero
I would like to get the leading zero in the below sql.Answered | 15 Replies | 4854 Views | Created by arkiboys - Thursday, October 11, 2012 11:24 AM | Last reply by arkiboys - Thursday, October 11, 2012 12:41 PM -
1 Votes
Remove all leading Zeros
Hi Dileep, For our understanding if you want to remove leading zeros, then "01.01" will be "1.01" not ...Answered | 11 Replies | 9352 Views | Created by Dileep sankar - Wednesday, October 12, 2016 7:57 AM | Last reply by Dileep sankar - Thursday, October 13, 2016 9:46 AM -
0 Votes
Format dimension attribute with leading zero
I am afraid you will be able to achive this by using formatting as it needs to be converted into varchar to display in the required format with trailing zeros.Answered | 4 Replies | 6450 Views | Created by Uwe Braunholz - Friday, May 20, 2011 9:33 AM | Last reply by Uwe Braunholz - Monday, May 23, 2011 3:07 PM -
0 Votes
How to use RowFilter to discard leading zeros
I was trying following code but was getting error.Answered | 5 Replies | 5638 Views | Created by mak102 - Thursday, May 5, 2011 8:15 PM | Last reply by mak102 - Friday, May 6, 2011 1:57 PM -
4 Votes
how to convert a char or string to hex?
You are more likely to get in touch with more VC++ experts in the Visual C++ forum.Answered | 12 Replies | 21759 Views | Created by Karthik Agarwal - Wednesday, September 14, 2011 8:45 AM | Last reply by Dummy yoyo - Sunday, September 18, 2011 1:00 PM - Items 1 to 20 of 3250605 Next ›
No announcements