Guest - helpme - Posted May 5, 2005 Report Share Posted May 5, 2005 existe alguma função em asp que procura um determinado valor em uma session ou em uma variavel qualquer?Valeu Quote Link to comment Share on other sites More sharing options...
0 Guest - helpme - Posted May 5, 2005 Report Share Posted May 5, 2005 Obs:Por exemplo eu tenho a string:Variavel = "Eu-Sou-muito-lindo"Ai eu queria testar se existe a palavra "muito" na string.. sacou? Quote Link to comment Share on other sites More sharing options...
0 cyberalexxx Posted May 5, 2005 Report Share Posted May 5, 2005 sub procura(onde,palavra) if Instr(onde,palavra) > 0 then Response.write "Palavra " & palavra & " encontrada na frase: " & onde else Response.write "Palavra " & palavra & " não encontrada na frase: " & onde end if end sub Para usar: a="Eu-Sou-muito-lindo" b="muito" procura(a,b) fiz na pressa testa ai!! Quote Link to comment Share on other sites More sharing options...
Question
Guest - helpme -
existe alguma função em asp que procura um determinado valor em uma session ou em uma variavel qualquer?
Valeu
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.