Python:preg_replace函数模拟

时间:2013-03-11 05:12:14

标签: php python preg-replace

我在PHP中有一个litle表达式:

  $search = array("'<(script|noscript|style|noindex)[^>]*?>.*?</(script|noscript|style|noindex)>'si",
    "'<\!--.*?-->'si",
    "'<[\/\!]*?[^<>]*?>'si",
    "'([\r\n])[\s]+'");

$replace = array ("",
  "",
  " ", 
  "\\1 ");

  $text = preg_replace($search, $replace, $this->pageHtml);

我是如何在python上运行的? re.sub

1 个答案:

答案 0 :(得分:6)

由于@bereal commented使用正则表达式模块re.sub

这是一个简单的例子

的Python:

>>> import re
>>> re.sub(r'([^A-Z])([A-Z])', r'\1_\2', 'camelCase').lower()
'camel_case'

只是为了解决这个问题,它也适用于PHP:

<?php
echo strtolower(preg_replace('/([^A-Z])([A-Z])/', '$1_$2', 'camelCase'));
// prints camel_case