Facebook
From Cute Madrill, 6 Years ago, written in Plain Text.
This paste is a reply to Re: Untitled from XD - view diff
Embed
Download Paste or View Raw
Hits: 381
  1. char[] fromchar = from.toCharArray();
  2.                  char[] tochar = to.toCharArray();
  3.                 for (int i = 0; i < tochar.length; i++) {
  4.  
  5.                         str = str.replace(fromchar[i], tochar[i]);
  6.