此问题已在此处有答案:
Matching string between nth occurrence of character in python with RegEx(1个答案)
15天前关闭。
这篇文章是编辑并提交审查15天前.
我想写一个正则表达式来匹配第二个和第三个星号之间的数字。示例:
REF*ck*200589*Bla bla bla
我要200589号。
我试过了
- [^*]+*
但显然它只提取了第一个和第二个星号之间的内容。
我也尝试了所有针对Matching string between nth occurrence of character in python with RegEx的解决方案,但没有一个适合我。
非常感谢!
1条答案
按热度按时间insrf1ej1#
这个应该能用
2
对many not[*]
,然后*
*
(可选)