Click here to Skip to main content
15,917,652 members
Home / Discussions / C#
   

C#

 
Question{"Invalid object name 'Table."} Pin
postonoh16-Sep-08 4:50
postonoh16-Sep-08 4:50 
AnswerRe: {"Invalid object name 'Table."} Pin
Richard Blythe16-Sep-08 5:16
Richard Blythe16-Sep-08 5:16 
GeneralRe: {"Invalid object name 'Table."} Pin
postonoh16-Sep-08 6:14
postonoh16-Sep-08 6:14 
GeneralRe: {"Invalid object name 'Table."} Pin
Richard Blythe16-Sep-08 7:15
Richard Blythe16-Sep-08 7:15 
QuestionNot Opening SQL Database file in Web applications: Pin
nkmnkmnkmnkm16-Sep-08 4:49
nkmnkmnkmnkm16-Sep-08 4:49 
Questionextracting sustrings from a string and store it in an array Pin
wajans16-Sep-08 3:56
wajans16-Sep-08 3:56 
AnswerRe: extracting sustrings from a string and store it in an array Pin
Alan Balkany16-Sep-08 4:04
Alan Balkany16-Sep-08 4:04 
AnswerRe: extracting sustrings from a string and store it in an array Pin
DaveyM6916-Sep-08 4:13
professionalDaveyM6916-Sep-08 4:13 
string.Split method.
string str = "something is [!better] than [!nothing]";
string[] separators = new string[] { "[!better]", "[!nothing]" };
string[] strArray = str.Split(separators, StringSplitOptions.RemoveEmptyEntries);
foreach (string item in strArray)
{
    Console.WriteLine(item.Trim());
}


Edit: Just reread the question and you want the exact opposite! Blush | :O Confused | :confused:

Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Expect everything to be hard and then enjoy the things that come easy. (code-frog)

AnswerRe: extracting sustrings from a string and store it in an array [modified] Pin
#realJSOP16-Sep-08 4:15
professional#realJSOP16-Sep-08 4:15 
GeneralRe: extracting sustrings from a string and store it in an array Pin
wajans16-Sep-08 19:43
wajans16-Sep-08 19:43 
AnswerRe: extracting sustrings from a string and store it in an array Pin
PIEBALDconsult16-Sep-08 4:24
mvePIEBALDconsult16-Sep-08 4:24 
AnswerRe: extracting sustrings from a string and store it in an array [modified] Pin
Guffa16-Sep-08 6:12
Guffa16-Sep-08 6:12 
GeneralRe: extracting sustrings from a string and store it in an array Pin
wajans16-Sep-08 19:31
wajans16-Sep-08 19:31 
AnswerRe: extracting sustrings from a string and store it in an array Pin
wajans16-Sep-08 20:22
wajans16-Sep-08 20:22 
GeneralRe: extracting sustrings from a string and store it in an array Pin
Guffa16-Sep-08 21:45
Guffa16-Sep-08 21:45 
GeneralRe: extracting sustrings from a string and store it in an array Pin
wajans18-Sep-08 20:55
wajans18-Sep-08 20:55 
GeneralRe: extracting sustrings from a string and store it in an array Pin
Guffa18-Sep-08 22:43
Guffa18-Sep-08 22:43 
AnswerRe: extracting sustrings from a string and store it in an array [modified] Pin
wajans18-Sep-08 23:48
wajans18-Sep-08 23:48 
GeneralRe: extracting sustrings from a string and store it in an array Pin
egenis16-Sep-08 20:29
egenis16-Sep-08 20:29 
QuestionHow to add rows into Datatable? Pin
zeeShan anSari16-Sep-08 3:34
zeeShan anSari16-Sep-08 3:34 
AnswerRe: How to add rows into Datatable? Pin
Harvey Saayman16-Sep-08 3:45
Harvey Saayman16-Sep-08 3:45 
GeneralRe: How to add rows into Datatable? Pin
zeeShan anSari16-Sep-08 3:59
zeeShan anSari16-Sep-08 3:59 
GeneralRe: How to add rows into Datatable? Pin
Harvey Saayman16-Sep-08 4:04
Harvey Saayman16-Sep-08 4:04 
GeneralRe: How to add rows into Datatable? Pin
zeeShan anSari16-Sep-08 4:06
zeeShan anSari16-Sep-08 4:06 
GeneralRe: How to add rows into Datatable? Pin
zeeShan anSari16-Sep-08 4:06
zeeShan anSari16-Sep-08 4:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.