How to get the required format text output from json payload using regexp
"number" : 4aac4c35-8e3e-4730-8364-381884d6f20f:OP:QUAL:117804471:PON:false
what is the expression to get the output like following
"number" : 117804471
could you please help.
I tried the following; but it didn't work; I am newbie to this.
([\"]token[\"][\s]*:[\s]*)?([0-9]{9})
Still not very sure of what you exactly want or need, but let's give a try, based on what you wrote here and in your sample.
Receiving some string respecting the following:
Trying to replace that input by only:
You could then use the following pattern to get your match:
^(?<token>"[^"]+"\s*:\s*)(?:\d*[^\d:][^:]*:)*(?<number>\d+)(?::[^:]*)*$
.The following should then be used to replace:
$1$2
.Demo here.
That may be simplified or adapted when knowing additional rules.