Category: Strings & Text
Find and Replace with sed
Edit a file in place with sed -i, replacing matches globally.
Author:
chris
Regex with re.search
Use named groups with the re stdlib and access them via groupdict().
Author:
chris
URL Encode and Decode in PHP
rawurlencode is RFC 3986; urlencode uses the older application/x-www-form-urlencoded.
Author:
chris
URL Encode and Decode in Perl
Use URI::Escape for percent-encoding and decoding strings.
Author:
chris