python string模块template_Python的string模块中的Template类字符串模板用法

# -*- coding: utf-8 -*-

import string

template_text = '''''

Delimiter : %%

Replaced : %with_underscore

Ingored : %notunderscored

'''

d = {'with_underscore' : 'replaced',

'notunderscored' : 'not replaced'}

class MyTemplate(string.Template):

delimiter = '%'

idpattern = '[a-z]+_[a-z]+'

t = MyTemplate(template_text)

print('Modified ID pattern: ')

print(t.safe_substitute(d))

输出:

Modified ID pattern:

Delimiter : %

Replaced : replaced

Ingored : %notunderscored

注意: 定界符(delimiter)为"%", 替换模式(idpattern)必须包含下划线, 所以第2个没有进行替换.

正则替换

string.Template的pattern是一个正则表达式, 可以通过覆盖pattern属性, 定义新的正则表达式.

如: 使用新的定界符"{{", 把{{var}}作为变量语法.

代码:

import string

t = string.Template('$var')

print(t.pattern.pattern)

class MyTemplate(string.Template):

delimiter = '{{'

pattern = r'''''

\{\{(?:

(?P\{\{) | # Escape sequence of two delimiters

(?P[_a-z][_a-z0-9]*)\}\} | # delimiter and a Python identifier

{(?P[_a-z][_a-z0-9]*)}\}\} | # delimiter and a braced identifier

(?P) # Other ill-formed delimiter exprs

)

'''

t2 = MyTemplate('''''

{{{{

{{var}}

''')

print('MATCHES: ', t2.pattern.findall(t2.template))

print('SUBSTITUTED: ', t2.safe_substitute(var='replacement'))

输出:

\$(?:

(?P\$) | # Escape sequence of two delimiters

(?P[_a-z][_a-z0-9]*) | # delimiter and a Python identifier

{(?P[_a-z][_a-z0-9]*)} | # delimiter and a braced identifier

(?P) # Other ill-formed delimiter exprs

)

MATCHES: [('{{', '', '', ''), ('', 'var', '', '')]

SUBSTITUTED:

{{

replacement

字符串模板的安全替换(safe_substitute)字符串模板(sting.Template), 替换时, 使用substitute(), 未能提供模板所需的全部参数值时, 会发生异常.

如果使用safe_substitute(), 即安全替换, 则会替换存在的字典值, 保留未存在的替换符号.

代码:

本站所有资源全部来源于网络,若本站发布的内容侵害到您的隐私或者利益,请联系我们删除!

合作方式

Copyright © 2004-2018 https://www.gxlcms.com/. All Rights Reserved.

豫ICP备19030742号

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值