dotnetrockz Posted August 8, 2014 Report Posted August 8, 2014 ee rendu concepts same anukunnanee inni roju luuuuu asalu inthaki enti avi ? regular expressions aa?
karna11 Posted August 8, 2014 Author Report Posted August 8, 2014 asalu inthaki enti avi ? regular expressions aa? multithreading loo concepts saab
littlemoon Posted August 21, 2014 Report Posted August 21, 2014 Hello guys... .net Regular expression midha doubt ? In a web page oka list of items display cheyali , for example if the list is to show planets I want to hide earth , basic ga I need to hide that list item from not displaying in the page. can we do this using regex? \b or \w elements use chesthu ? ila ankuntna nenu but I might be wrong. please give some examples. string pattern ="\bearth\b"; if (Regex.Match(input,pattern)) { Hide } else { Show }
ChampakDas Posted August 21, 2014 Report Posted August 21, 2014 aa item ki runat server petti code behind lo pani kaniyachu kada Hello guys... .net Regular expression midha doubt ? In a web page oka list of items display cheyali , for example if the list is to show planets I want to hide earth , basic ga I need to hide that list item from not displaying in the page. can we do this using regex? \b or \w elements use chesthu ? ila ankuntna nenu but I might be wrong. please give some examples. string pattern ="\bearth\b"; if (Regex.Match(input,pattern)) { Hide } else { Show }
puli_keka Posted August 21, 2014 Report Posted August 21, 2014 Hello guys... .net Regular expression midha doubt ? In a web page oka list of items display cheyali , for example if the list is to show planets I want to hide earth , basic ga I need to hide that list item from not displaying in the page. can we do this using regex? \b or \w elements use chesthu ? ila ankuntna nenu but I might be wrong. please give some examples. string pattern ="\bearth\b"; if (Regex.Match(input,pattern)) { Hide } else { Show } Regex string lo pattern matching ki.. Nee list of string lo earth remove cheyali ante create a sublist by doing for each or using linq ignore the strings
karna11 Posted August 21, 2014 Author Report Posted August 21, 2014 Hello guys... .net Regular expression midha doubt ? In a web page oka list of items display cheyali , for example if the list is to show planets I want to hide earth , basic ga I need to hide that list item from not displaying in the page. can we do this using regex? \b or \w elements use chesthu ? ila ankuntna nenu but I might be wrong. please give some examples. string pattern ="\bearth\b"; if (Regex.Match(input,pattern)) { Hide } else { Show } intha hungama avasarama bujji ilaa vadochu gaa if (myList.Any(str => str.Contains("earth"))) then hide else show
littlemoon Posted August 21, 2014 Report Posted August 21, 2014 aa item ki runat server petti code behind lo pani kaniyachu kada code behind lo ne elano telika post chesa..
littlemoon Posted August 21, 2014 Report Posted August 21, 2014 intha hungama avasarama bujji ilaa vadochu gaa if (myList.Any(str => str.Contains("earth"))) then hide else show idi enti intha smple ga code cheyocha ? ante earth ane word inka vere list item lo kuda unte adi kuda hide aipothundi kada ala aithe. anyway Ipudu ipude regular expression learning, will give a try. thankyou
puli_keka Posted August 21, 2014 Report Posted August 21, 2014 idi enti intha smple ga code cheyocha ? ante earth ane word inka vere list item lo kuda unte adi kuda hide aipothundi kada ala aithe. anyway Ipudu ipude regular expression learning, will give a try. thankyou nuvvu earth ante oka string lo vesavu ala kakunda it should start with E and end with H anuko .. appudu you can do regex match for ^E[\s\S]+?H$ ragalahari.com lo oka page lo unna pics anni regex thone download chestha nenu :3D_Smiles_56:
littlemoon Posted August 21, 2014 Report Posted August 21, 2014 nuvvu earth ante oka string lo vesavu ala kakunda it should start with E and end with H anuko .. appudu you can do regex match for ^E[\s\S]+?H$ :3D_Smiles_56: ok thank you.
littlemoon Posted August 26, 2014 Report Posted August 26, 2014 inko question .. how to display server or machine name specific to environment on a webpage ? from where the website is being hosted Web page lo hide ayi just view page source lo kanipivali .. help
puli_keka Posted August 26, 2014 Report Posted August 26, 2014 inko question .. how to display server or machine name specific to environment on a webpage ? from where the website is being hosted Web page lo hide ayi just view page source lo kanipivali .. help LTT may be you can create an input type text and make it hidden.. and code behind nundi modify value ??
BC509 Posted August 26, 2014 Report Posted August 26, 2014 MVC or Regular ASP.NET lo na Try hidden variable concept ..
littlemoon Posted August 26, 2014 Report Posted August 26, 2014 MVC or Regular ASP.NET lo na mvc lo kavali but asp.net lo telisthe pls post..
Recommended Posts