|
|
|
|
|
|
|
|
-
Srikanth Reddy Liked 2 Years ago through Just Learned | 1 Point
Recently a colleague of mine asked me to give him a code for replacing spaces,dots(.),hyphens(-),braces '(' and ')'.
Here is my solution
[Code]string str= "This is a string having - and - - - - It also has dot (.) Many dots(.....)"; [/Code]
A...
|
-
Srikanth Reddy Liked 2 Years ago through Just Learned | 1 Point
Recently a colleague of mine asked me to give him a code for replacing spaces,dots(.),hyphens(-),braces '(' and ')'.
Here is my solution
[Code]string str= "This is a string having - and - - - - It also has dot (.) Many dots(.....)"; [/Code]
A...
|
-
Srikanth Reddy Learned 2 Years ago through Just Learned | 1 Point
Recently a colleague of mine asked me to give him a code for replacing spaces,dots(.),hyphens(-),braces '(' and ')'.
Here is my solution
[Code]string str= "This is a string having - and - - - - It also has dot (.) Many dots(.....)"; [/Code]
A...
|
-
Srikanth Reddy Learned 2 Years ago through Just Learned | 1 Point
Recently a colleague of mine asked me to give him a code for replacing spaces,dots(.),hyphens(-),braces '(' and ')'.
Here is my solution
[Code]string str= "This is a string having - and - - - - It also has dot (.) Many dots(.....)"; [/Code]
A...
|
-
Srikanth Reddy Liked 2 Years ago through Just Learned | 1 Point
Recently a colleague of mine asked me to give him a code for replacing spaces,dots(.),hyphens(-),braces '(' and ')'.
Here is my solution
[Code]string str= "This is a string having - and - - - - It also has dot (.) Many dots(.....)"; [/Code]
Appr
|
-
Srikanth Reddy knew 2 Years ago through Just Learned | 1 Point
We can add primary key on existing table with following either query.
[CODE]
ALTER TABLE TableName
ADD PRIMARY KEY (ColumnId)
GO
-- OR
ALTER TABLE TableName
ADD CONSTRAINT pk_ColumnId PRIMARY KEY(ColumnId)
GO
[/CODE]
While creating p...
|
-
Srikanth Reddy knew 2 Years ago through Just Learned | 1 Point
We can add primary key on existing table with following either query.
[CODE]
ALTER TABLE TableName
ADD PRIMARY KEY (ColumnId)
GO
-- OR
ALTER TABLE TableName
ADD CONSTRAINT pk_ColumnId PRIMARY KEY(ColumnId)
GO
[/CODE]
While creating p...
|