TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Kannan AU
NA
57
24.5k
How to remove 2 Zeros in the beginning of a string
Apr 11 2020 5:48 PM
This is my code -
var creditAccount = response.Accounts.Where(x => x.Value.Identifier.ProductCode == "MMM").Select(x=>x.Value.Identifier).ToList();
// For Example :- creditAccount - 0000002134665300468820,0000001528830814061271
foreach (var item in creditAccount)
{
permanentIdList.Add(item.PermanentIdentifier);
}
Here i Need to remove two zeros in the creditAccount before pushing into the list. Please help me How do I remove that.
I am expecting - For Example :- creditAccount - 00002134665300468820, 00001528830814061271
Reply
Answers (
3
)
Passing 3textbox Values into another page using query string
how to convert binary file to wave file in .net