How to replace multiple substrings of a string?(如何替换字符串的多个子字符串?)
本文介绍了如何替换字符串的多个子字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
I would like to use the .replace function to replace multiple strings.
I currently have
but would like to have something like
although that does not feel like good syntax
what is the proper way to do this? kind of like how in grep/regex you can do 1
and 2
to replace fields to certain search strings
解决方案
Here is a short example that should do the trick with regular expressions:
For example:
这篇关于如何替换字符串的多个子字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!