I want to get two specific words using regex after a word
So I have the following text
code: 'dev-foo-1', text: foo, bla:, blabla, ..., tokenId: '1234566343434', accountId: '123456789',...
I want from this text only the code dev-foo-1
and the account id 123456789
But I am having problem to select those two.
I tried to do something like
code:'\([a-z]{3})([a-z]+)([0-9])'\accountId: \'([0-9])'
which it's wrong.