博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python $variable substitute in string using string Template module
阅读量:6140 次
发布时间:2019-06-21

本文共 6245 字,大约阅读时间需要 20 分钟。

Template(string)用于构造一个实例, 这个实例中的$var 可以被Template的substitute()或safe_substitute()方法来替换.
用法举例 :
>>> from string import Template    # 导入模板>>> s = Template("hello, I am ${first_name}.${last_name}")  # 构造一个实例>>> s.substitute(first_name="zhou", last_name="digoal")  # 替换变量, 返回替换后的字符串'hello, I am zhou.digoal'>>> d=dict()  # 使用字典来替换变量.>>> d['first_name']="zhou">>> s.substitute(d)  # 注意使用substitute替换的话, 所有的变量必须都被替换.Traceback (most recent call last):  File "
", line 1, in
File "/usr/local/lib/python3.4/string.py", line 121, in substitute return self.pattern.sub(convert, self.template) File "/usr/local/lib/python3.4/string.py", line 111, in convert val = mapping[named]KeyError: 'last_name'>>> s.safe_substitute(d) # 使用safe_substitute来替换的话, 可以只替换部分或全部或全否变量.'hello, I am zhou.${last_name}'>>> a=dict()>>> s.safe_substitute(a)'hello, I am ${first_name}.${last_name}'>>> s = Template("hello, I am ${first_name}.${123}") # 变量名必须使用合法的变量名, 字母开头. 不能是数字开头.>>> s.safe_substitute(d)'hello, I am zhou.${123}'>>> d['123']="digoal">>> s.safe_substitute(d)'hello, I am zhou.${123}'>>> s.substitute(d) # 数字开头的变量被替换时会报错Traceback (most recent call last): File "
", line 1, in
File "/usr/local/lib/python3.4/string.py", line 121, in substitute return self.pattern.sub(convert, self.template) File "/usr/local/lib/python3.4/string.py", line 118, in convert self._invalid(mo) File "/usr/local/lib/python3.4/string.py", line 95, in _invalid (lineno, colno))ValueError: Invalid placeholder in string: line 1, col 27>>> s = Template("hello, I am ${first_name}.${last_name}") # 更换为合法的变量名后, 正常>>> d['last_name']="digoal">>> s.substitute(d)'hello, I am zhou.digoal'>>> s.safe_substitute(d)'hello, I am zhou.digoal'
[参考]
1. 

6.1.4. Template strings

Templates provide simpler string substitutions as described in . Instead of the normal %-based substitutions, Templates support $-based substitutions, using the following rules:

  • $$ is an escape; it is replaced with a single $.
  • $identifier names a substitution placeholder matching a mapping key of "identifier". By default, "identifier" must spell a Python identifier. The first non-identifier character after the $ character terminates this placeholder specification.
  • ${identifier} is equivalent to $identifier. It is required when valid identifier characters follow the placeholder but are not part of the placeholder, such as "${noun}ification".

Any other appearance of $ in the string will result in a  being raised.

The  module provides a  class that implements these rules. The methods of  are:

class string.Template(
template)

The constructor takes a single argument which is the template string.

substitute(
mapping
**kwds)

Performs the template substitution, returning a new string. mapping is any dictionary-like object with keys that match the placeholders in the template. Alternatively, you can provide keyword arguments, where the keywords are the placeholders. When both mapping and kwds are given and there are duplicates, the placeholders from kwds take precedence.

safe_substitute(
mapping
**kwds)

Like , except that if placeholders are missing from mapping and kwds, instead of raising a  exception, the original placeholder will appear in the resulting string intact. Also, unlike with , any other appearances of the $ will simply return $ instead of raising .

While other exceptions may still occur, this method is called “safe” because substitutions always tries to return a usable string instead of raising an exception. In another sense,  may be anything other than safe, since it will silently ignore malformed templates containing dangling delimiters, unmatched braces, or placeholders that are not valid Python identifiers.

 instances also provide one public data attribute:

template

This is the object passed to the constructor’s template argument. In general, you shouldn’t change it, but read-only access is not enforced.

Here is an example of how to use a Template:

>>>
>>> from string import Template>>> s = Template('$who likes $what')>>> s.substitute(who='tim', what='kung pao')'tim likes kung pao'>>> d = dict(who='tim')>>> Template('Give $who $100').substitute(d)Traceback (most recent call last):...ValueError: Invalid placeholder in string: line 1, col 11>>> Template('$who likes $what').substitute(d)Traceback (most recent call last):...KeyError: 'what'>>> Template('$who likes $what').safe_substitute(d)'tim likes $what'

Advanced usage: you can derive subclasses of  to customize the placeholder syntax, delimiter character, or the entire regular expression used to parse template strings. To do this, you can override these class attributes:

  • delimiter – This is the literal string describing a placeholder introducing delimiter. The default value is $. Note that this should not be a regular expression, as the implementation will call  on this string as needed.

  • idpattern – This is the regular expression describing the pattern for non-braced placeholders (the braces will be added automatically as appropriate). The default value is the regular expression [_a-z][_a-z0-9]*.

  • flags – The regular expression flags that will be applied when compiling the regular expression used for recognizing substitutions. The default value isre.IGNORECASE. Note that re.VERBOSE will always be added to the flags, so custom idpatterns must follow conventions for verbose regular expressions.

    New in version 3.2.

Alternatively, you can provide the entire regular expression pattern by overriding the class attribute pattern. If you do this, the value must be a regular expression object with four named capturing groups. The capturing groups correspond to the rules given above, along with the invalid placeholder rule:

  • escaped – This group matches the escape sequence, e.g. $$, in the default pattern.
  • named – This group matches the unbraced placeholder name; it should not include the delimiter in capturing group.
  • braced – This group matches the brace enclosed placeholder name; it should not include either the delimiter or braces in the capturing group.
  • invalid – This group matches any other delimiter pattern (usually a single delimiter), and it should appear last in the regular expression.

转载地址:http://jmrua.baihongyu.com/

你可能感兴趣的文章
集群之lvs 基础知识
查看>>
学习linux命令
查看>>
nmap扫描主机存活情况
查看>>
AngularJS从构建项目开始
查看>>
我的友情链接
查看>>
python如何调用C, 如何注册成C的回调函数(python后台程序常用方法)
查看>>
Node.js ORM框架:ORM2
查看>>
shell---practice4
查看>>
chrome浏览器去掉打开新标签的常用地址缩略图
查看>>
广义线性模介绍
查看>>
Excel数据透视表--认识数据透视表
查看>>
我的友情链接
查看>>
UNIX下获取前一天后一天的日期
查看>>
linux下sed的使用(上)
查看>>
zookeeper集群搭建
查看>>
二叉树先序序列和中序序列求解树
查看>>
oracle tkprof
查看>>
NPOI操作EXCEL——项目简介
查看>>
VirtualBox的端口映射其实很好理解
查看>>
jQuery learn - 2 - 事件
查看>>