Advertisement
AlexRap

Untitled

Jul 30th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. if(strfind(inputtext,"'") || strfind(inputtext,"<")|| strfind(inputtext,">")|| strfind(inputtext,""))
  2. {
  3. for(new i; i < strlen(inputtext); i++)
  4. {
  5. if(strfind(inputtext[i],"%", true) == 0)
  6. {
  7. inputtext[i] = '-';
  8. }
  9. if(strfind(inputtext[i],"'", true) == 0)
  10. {
  11. inputtext[i] = '-';
  12. }
  13. if(strfind(inputtext[i], "`", true) == 0)
  14. {
  15. inputtext[i] = '-';
  16. }
  17. }
  18. }
  19. ai asta la ondialogresponse?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement