How to remove leading Zeros in the nvarchar datatype. I would like to do this using C#.
Example:
0001234 0000001234 00001234
Thanks in Advance...
|
How to remove leading Zeros in the nvarchar datatype. I would like to do this using C#. Example: 0001234 0000001234 00001234 Thanks in Advance... |
|||
|
|
||||
|
|
|
This is the code you need:
|
||||
|
|
|
TryParse works if your number is less than Int32.MaxValue. This also gives you the opportunity to handle badly formatted strings. Works the same for Int64.MaxValue and Int64.TryParse.
|
||||
|
|