Can anybody tell me how to change a text like "News April 2012" to "news_april_2012" or "newsapril2012". I need it because my gallery categories has to be without spaces and lowercase. At the moment the problem is solved by using a textstring for the name "News April 2012" and another textstring for the category where the user has to type in "newsapril2012" and I want this to be done only using the name text string "News April 2012" and then the Razor convert the text. In the code below I need the "@page.category" to be converted.
Remove spaces and change to lowercase
Hello
Can anybody tell me how to change a text like "News April 2012" to "news_april_2012" or "newsapril2012". I need it because my gallery categories has to be without spaces and lowercase.
At the moment the problem is solved by using a textstring for the name "News April 2012" and another textstring for the category where the user has to type in "newsapril2012" and I want this to be done only using the name text string "News April 2012" and then the Razor convert the text.
In the code below I need the "@page.category" to be converted.
Thank you!
//René
Hi Rene,
Try something like
Comment author was deleted
try @page.category.ToLower().Replace(' ', '_') @page.category.ToLower().Replace(' ', '')
Hi Fuji / Tim
Thanks to both of you, it worked like a charm. :-)
// René
is working on a reply...