E. 212 Number series Mobile Country Code (MCC) Mobile Network Code (MNC)
Page 10 of 35
RAEX IR.21 document (schema vers. 16.0) 338 050
E. 214 Mobile Global Title (MGT) Country Code of MGT (CC) Network Code of MGT (NC) 1 87638
I have tried with regex for E214 and E212 but E214 working fine not E212
FOR E214: (?<=E.\s+214\s+Mobile.\n). (Itβs fetched correct value : 1 87638)
For E212: (?<=E.\s+212\s+Number.\n). (Not working ) (please anyone provide possible scanario regex )
This pattern should be able to extract both E. 212 and E. 214 numbers, ensuring that the numbers exist on a new line, which helps to ignore other unrelated numbers: (?<=E. 21(\s|\S)+)(?<=\n)(\d+\s?\d+)
To refine it further, you can use the following patterns for each case:
For E. 212: (?<=E\. 212(\s|\S)+)(?<=\n)(\d+\s?\d+)
For E. 214: (?<=E\. 214(\s|\S)+)(?<=\n)(\d+\s?\d+)
These patterns ensure that only the numbers immediately following E. 212 or E. 214 on a new line are captured.