Hi,
I'm looking for a built-in function/extended function in T-SQL for string manipulation similar to the String.Format method in .NET.
|
|
Hi, I'm looking for a built-in function/extended function in T-SQL for string manipulation similar to the String.Format method in .NET. |
|||
|
|
|
|
take a look at xp_sprintf. example below.
Result looks like this:
Just found an issue with the max size of the string with this so there is an alternative function you can use:
To get the same result as above you call the function as follows:
|
|||
|
|
|
|
There is a way, but it has it's limitations. You can use the FORMATMESSAGE() function. It allows you to format a string using formatting similar to the printf function in C. However, the biggest limitation is that it will only work with messages in the sys.messages table. Here's an article about it: http://msdn.microsoft.com/en-us/library/ms186788.aspx It's kind of a shame there isn't an easier way to do this, because there are times when you want to format a string/varchar in the database. Hopefully you are only looking to format a string in a standard way and can use the sys.messages table. Coincidentally, you could also use the raiseerror() function with a very low severity, the documentation for raiseerror even mentions doing this, but the results are only printed. So you wouldn't be able to do anything with the resulting value (from what I understand). Good luck! |
||
|
|
|
|
Not exactly, but I would check out some of the articles on string handling (amongst other things) by "Phil Factor" (geddit?) on Simple Talk. |
||
|
|
|
|
SQL Server is for retrieving data. Do your formatting client-side, in whatever language you're using on that side. |
||
|
|
Raw t-sql is limited to CHARINDEX(), PATINDEX(), REPLACE(), and SUBSTRING() for string manipulation. But with sql server 2005 and later you can set up user defined functions that run in .Net, which means setting up a string.format() UDF shouldn't be too tough. |
|||
|
|