
schweppy html
By:
waterapple on
Jan 27th, 2014 | syntax:
HTML | size: 0.94 KB | hits: 24 | expires: Never
<html>
<head>
<title>Python Tools</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<script type="text/javascript" src="pythonTools.js"></script>
</head>
<body>
<div>Escaper tool for Python Strings</div>
<input value=" Escape string for Python " onclick="escapePythonString();" type="button">
<textarea id="pythonStringEscapeTextBox" style="width: 99%; height: 100px;" wrap="off">Enter text here</textarea>
<br>
<br>
<div>Escaper tool for Python Regular Expressions</div>
<input value=" Escape string for Regex " onclick="escapePythonRegexString();" type="button">
<br>
<input type="checkbox" id="regexWhiteSpace" checked/>Convert whitespace to "\s+?".
<textarea id="pythonRegexEscapeTextBox" style="width: 99%; height: 100px;" wrap="off">Enter text here</textarea>
</body>
</html>