回答
// Defines the string with mixed casing.
string myString = "Automatic email sent";
// Creates a TextInfo based on the "en-US" culture.
TextInfo myTI = new CultureInfo("en-US",false).TextInfo;
// Changes a string to titlecase, then replace the spaces with empty
string outputString = myTI.ToTitleCase(myString).Replace(" ", "");
作爲'sql'標記更新的問題,'c#'不再相關。 – 2014-10-17 12:50:29
偷this answer一個函數,它接受一個文本輸入,要對它進行適當的情況下(也稱爲首字母大寫):
create function ProperCase(@Text as varchar(8000))
returns varchar(8000)
as
begin
declare @Reset bit;
declare @Ret varchar(8000);
declare @i int;
declare @c char(1);
select @Reset = 1, @i=1, @Ret = '';
while (@i <= len(@Text))
select @c= substring(@Text,@i,1),
@Ret = @Ret + case when @Reset=1 then UPPER(@c) else LOWER(@c) end,
@Reset = case when @c like '[a-zA-Z]' then 0 else 1 end,
@i = @i +1
return @Ret
end
然後,您可以使用此功能結合REPLACE:
SELECT REPLACE(dbo.ProperCase(column), ' ', '')
FROM MyTable
非常感謝! – 2016-08-17 06:55:48
不要忘記提供您認爲有用的答案,如果其中一個解決了您的問題,請將其標記爲答案。 – DavidG 2016-08-17 07:50:24
SQ L服務器
declare @value varchar(64) = rtrim(' ' + 'Automatic email sent')
;with t(n) as (
select n = charindex(' ', @value, 0)
union all
select n = charindex(' ', @value, n + 1)
from t
where n > 0
)
select @value = stuff(@value, n + 1, 1, upper(substring(@value, n + 1, 1))) from t where n > 0
select replace(@value, ' ', '')
它適合我! – 2016-08-17 06:56:24
- 1. 將字符串轉換爲字符與開關的情況下
- 2. 從字符串中刪除標點符號和空格
- 3. C++從字符串中刪除標點符號和空格
- 4. 從字符串中刪除空格並將其轉換爲駱駝格式C
- 5. 記號化字符串sregex_token_iterator的情況下,與標題空間
- 6. 在沒有字符串的情況下刪除我的函數中的空格
- 7. 刪除空格,轉換大小寫,除字符串外
- 8. 轉換爲字符串,刪除特殊字符和更換
- 9. 從長字符串空格中刪除單個空格字符
- 10. 從字符串中刪除字母字符和空格
- 11. 只從字符串中刪除空格
- 12. awk從字符串中刪除空格
- 13. QStringList從字符串中刪除空格
- 14. 從字符串中刪除空格
- 15. 從字符串中刪除空格
- 16. 從字符串中刪除空格
- 17. 如何在不轉換C#的情況下將字符串轉換爲字節[]
- 18. 不能隱式地將字符串[]轉換爲字符串的情況下
- 19. 如何從字符串中刪除雙字符和空格
- 20. 從字符串中刪除空格和特殊字符
- 21. 如何刪除空格和換行符的字符串
- 22. 在這種情況下,爲什麼無法從字符串轉換爲日期?
- 23. 在忽略標點符號的情況下刪除MATLAB字符串中的多餘空格
- 24. 刪除brakets和字符串和空格下面
- 25. 將一個字符串從蛇情況轉換爲Java中的駱駝情況
- 26. 如何在不轉換爲字符串的情況下設置DateTime格式
- 27. 從字符串中刪除所有空格和標點符號(不是字母)?
- 28. 如何從字符串中刪除所有符號和空格?
- 29. 刪除字符串,除非有空格
- 30. 向標題字符串引入空格和換行符?
這是在C#還是SQL? – DavidG 2014-10-17 12:47:50
明白了,有什麼企圖? – 2014-10-17 12:48:08
你到目前爲止做了什麼?而且你想在c#或sql中完成這個任務嗎? – Paolo 2014-10-17 12:48:11