我想知道如何获取以下文本的正则表达式:
XXXXXX[Some Same Text # AAAA-NNNN]XXXXXX
在哪里:
'X' can vary any text: Alfa, numerical or symbols (The X can have 0 to infinite characters and it is NOT obligatory).
'A' Alfa uppercase text (The Alfa has exactly 4 uppercase letters and it is obligatory).
'N' Numbers (The N have exactly 4 numbers and it is obligatory).
'Some Same text' has exactly the same text always and it is obligatory.
'[,],#,-' will always be there in that same possition and it is obligatory.
我有一个 preg_match :
*[Some Same Text([A-Z]{4})-([0-9]{4})]*
它似乎没有工作。
谢谢并恭祝安康!