Search Results

0
votes

How do I replace ‘php3’ with ‘php’ inside every file in a directory.

sed -i 's/php3/php/g' * Assuming you are using a unix-like operating system. …
0
votes

How can I translate the following filename to a regular expression in Python?

When working with regexes I find the Mochikit regex example to be a great help. /^b\d\d\dcv\d\d_test …
3
votes

Parsing GPS receiver output via regex in Python

You should also first check the checksum of the data. It is calculated by XORing the characters between the $ and the * (not including them) and comparing it to the hex value at the end. Yo …