Cut Space
-
I have one string "Hello World" I want cut space to like that "Hello World", please help me Thanks
................
-
I have one string "Hello World" I want cut space to like that "Hello World", please help me Thanks
................
Not able to get your problemm:(
Thanks and Regards, Chetan Ranpariya
-
I have one string "Hello World" I want cut space to like that "Hello World", please help me Thanks
................
Clearly explain what is your problem. There is no difference in your mentioned word of "Hello World".
Regards, Satips.
-
Not able to get your problemm:(
Thanks and Regards, Chetan Ranpariya
You it contain many space with it u can view it, it like that "Hello World"
................
-
Clearly explain what is your problem. There is no difference in your mentioned word of "Hello World".
Regards, Satips.
The string like that "Hello World", please help me, I want it become like this "Hello World" Thanks Socheat
................
-
The string like that "Hello World", please help me, I want it become like this "Hello World" Thanks Socheat
................
-
Use the Regex.Replace method to replace multiple spaces (pattern = " {2,}") with a single space.
--- single minded; short sighted; long gone;
But i currently using ASP, show how can i? Regard Socheat
................
-
The string like that "Hello World", please help me, I want it become like this "Hello World" Thanks Socheat
................
Try this
string str = "Hello World"; char[] separator ={ ' ' }; string[] result = str.Split(separator, StringSplitOptions.RemoveEmptyEntries);
Thanks and Regards Sandeep If you want something you never had, do something you have never done!
-
Try this
string str = "Hello World"; char[] separator ={ ' ' }; string[] result = str.Split(separator, StringSplitOptions.RemoveEmptyEntries);
Thanks and Regards Sandeep If you want something you never had, do something you have never done!
I am very sorry I don't understand, please give as ASP code Regard Socheat
................
-
But i currently using ASP, show how can i? Regard Socheat
................
As you asked in the ASP.NET forum, I assumed that you were using ASP.NET. In ASP you can use the RegExp object. As you haven't said what language you are using, I assume that you are using VBScript. Example:
With New RegExp
.Pattern = " {2,}"
.Global = True
text = .Replace(text, " ")
End With--- single minded; short sighted; long gone;
-
As you asked in the ASP.NET forum, I assumed that you were using ASP.NET. In ASP you can use the RegExp object. As you haven't said what language you are using, I assume that you are using VBScript. Example:
With New RegExp
.Pattern = " {2,}"
.Global = True
text = .Replace(text, " ")
End With--- single minded; short sighted; long gone;
I currently using ASP
................
-
I currently using ASP
................
What language are you using ? If C#, or VB.NET, you are using ASP.NET. Otherwise, you are in the wrong forum.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
I am very sorry I don't understand, please give as ASP code Regard Socheat
................
OK - please ask in the web development forum. Why are you using ASP ? It's a nightmare....
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Not able to get your problemm:(
Thanks and Regards, Chetan Ranpariya
I think my question is not clear to u Assume that we have 10 Store procedures in a database and we only knows names of Store procedures only, Each SP is having its own number of input parameters depends on it requirements i wnat to write a code.... To find the number of input parameters in each SP Thank you
kishore kumar Manikonda Software Developer
-
What language are you using ? If C#, or VB.NET, you are using ASP.NET. Otherwise, you are in the wrong forum.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
I think my question is not clear to u Assume that we have 10 Store procedures in a database and we only knows names of Store procedures only, Each SP is having its own number of input parameters depends on it requirements i wnat to write a code.... To find the number of input parameters in each SP Thank you
kishore kumar Manikonda Software Developer
-
Use the Regex.Replace method to replace multiple spaces (pattern = " {2,}") with a single space.
--- single minded; short sighted; long gone;
I think my question is not clear to u Assume that we have 10 Store procedures in a database and we only knows names of Store procedures only, Each SP is having its own number of input parameters depends on it requirements i wnat to write a code.... To find the number of input parameters in each SP Thank you :)
kishore kumar Manikonda Software Developer
-
I think my question is not clear to u Assume that we have 10 Store procedures in a database and we only knows names of Store procedures only, Each SP is having its own number of input parameters depends on it requirements i wnat to write a code.... To find the number of input parameters in each SP Thank you
kishore kumar Manikonda Software Developer
-
I currently using ASP
................
Socheat.Net wrote:
I currently using ASP
I posted ASP code.
--- single minded; short sighted; long gone;
-
You it contain many space with it u can view it, it like that "Hello World"
................
hi, i am using CreateUser Wizard to add user information in aspnet_profile table like firstName,lastName etc. but all data are stored in one propertyvaluesString. How can i add column like lastName and insert the lastName value to lastName column Thanks Bernie