$.childrenInfo[3].martialStatusWhenBirth 用python 将字符串中的数字替换成*
时间: 2023-11-27 14:53:39 浏览: 64
可以使用正则表达式和`re.sub()`函数来实现字符串中数字的替换。具体的代码如下:
```python
import re
s = "$.childrenInfo[3].martialStatusWhenBirth"
s = re.sub(r'\d', '*', s)
print(s) # 输出为 "$.childrenInfo[*].martialStatusWhenBirth"
```
在上面的代码中,`re.sub()`函数的第一个参数是正则表达式,`\d`表示匹配任意数字。第二个参数是替换成的字符,这里是`*`。最后将替换后的字符串赋值给`s`即可。
阅读全文