adri1

Untitled

Mar 26th, 2015
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. new newline = strfind(inputtext, "\\n", true);
  2. print(inputtext);
  3. if(newline != -1)
  4. {
  5. strdel(inputtext, newline, newline+2);
  6. strins(inputtext, "\n", newline, 256);
  7. print(inputtext);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment