AS3 Convert a Forward Slash to URLEncoded Character %2F


/ Published in: ActionScript 3
Save to your folder(s)

In AS2 forward slashes got url-encoded to %2F when you escaped them. But in AS3 they get ignored and left as they are. In some situations I have found that this can cause problems. So you can do it manually using this regular expression.


Copy this code and paste it in your HTML
  1. var myString:String = "/";
  2. trace(myString);
  3. var urlEncodeForwardSlashedRegExp:RegExp = new RegExp("/", "gi");
  4. myString = myString.replace(urlEncodeForwardSlashedRegExp, "%2F");
  5. trace(myString);
  6.  
  7. // OUTPUT
  8. // /
  9. // %2F

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.