GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
URI::Escape::JavaScript(3) User Contributed Perl Documentation URI::Escape::JavaScript(3)

URI::Escape::JavaScript - A perl implementation of JavaScript's escape() and unescape() functions

 use URI::Escape::JavaScript qw(escape unescape);
 
 $string  = "\x{3084}\x{306f}\x{308a}\x{539f}\x{56e0}\x{306f} Yapp(ry";
 $escaped = escape($string);
 
 $escaped = '%u30B5%u30D6%u30C6%u30AF%u5165%u308A%u305F%u3044%uFF01%uFF01';
 $string  = unescape($escaped);

 use URI::Escape::JavaScript;
 
 $string  = "\x{30c9}\x{30f3}\x{5f15}\x{304d}\x{3057}\x{305f}";
 $escaped = js_escape($string);
 
 $escaped = '%u3059%u305A%u304D%u308A%u3093%u305F%u308D%u3046';
 $string  = js_unescape($escaped);

URI::Escape::JavaScript provides JavaScript's "escape()" and "unescape()" functions. It works simplar to homonymous functions of JavaScript. URI::Escape doesn't work for escaping and unescaping JavaScript like Unicode URI-escape ("%uXXXX"). But you can use this module to do those.

"escape()" works to escape a string to JavaScript's URI-escaped string. The argument of this function must be a flagged UTF-8 string (a.k.a. Perl's internal form). This function is exportable (but will not be exported by default). "use" it with arguments of function names if you want (It's for backward compatibility).

"unescape()" works to unescape JavaScript's URI-escaped string to original string. It will return a flagged UTF-8 string (a.k.a. Perl's internal form). This function is also exportable (but will not be exported by default). "use" it with arguments of function names if you want (It's also for backward compatibility).

It's a synonym for "escape()". This function will be exported on your namespace.

It's a synonym for "unescape()". This function will be exported on your namespace.

Koichi Taniguchi <taniguchi@livedoor.jp>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

URI::Escape, Encode, Encode::JavaScript::UCS
2010-03-05 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.