Jump to content

Recommended Posts

Posted

ee rendu concepts same anukunnanee inni roju luuuuu ragada8.gif

asalu inthaki enti avi ragada8.gif?

 

regular expressions aa?

  • Replies 221
  • Created
  • Last Reply

Top Posters In This Topic

  • dotnetrockz

    32

  • puli_keka

    31

  • karna11

    28

  • Suhaas

    16

Posted

asalu inthaki enti avi ragada8.gif?

 

regular expressions aa?

multithreading loo concepts saab

  • 2 weeks later...
Posted

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

}

Posted

aa item ki runat server petti code behind lo pani kaniyachu kada bemmi-pushing.gif?1403646236

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

}

 

Posted

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
Posted

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

 

 

Posted

aa item ki runat server petti code behind lo pani kaniyachu kada bemmi-pushing.gif?1403646236

code behind lo ne elano telika post chesa..

Posted

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

Posted

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: 

Posted

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. 

Posted

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  

Posted

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 ??

Posted

MVC or Regular ASP.NET lo na

mvc lo kavali but asp.net lo telisthe  pls post.. 

×
×
  • Create New...