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
Anthony Clarke
NA
127
0
Help with String
Jul 8 2011 3:44 AM
Hi I have a linq query to insert a value from a long string
private
void
markInvoicesIndispute()
String
[] invoices = Invoices.Lines;
foreach
(
String
inv
in
invoices)
{
StripNonNumerics(inv);
}
public
string
StripNonNumerics(
string
inputString)
{
return
new
String
(inputString.Where(c =>
Char
.IsDigit(c)).ToArray());
This is the bit that is bothering me ------ Although it says return new string how to i output this say to a messagebox? e.g. messagebox.show(inputstring) ???
Thanks in advance
Anthony
}
Reply
Answers (
3
)
Block Event of Datagrid View
Check if Dataset is Null?