skip to Main Content

Javascript – How can I ignore the first x number of characters in a string when matching with a Regex (without using a look behind)?

I am trying to create a REGEX which captures the following string : returnedData=dfsavdasvfdvdvvjwfwhvfwjhfvwjhevfwjvfw04040000N.sdfsgs.sfgakhvsafjhafj ksajbd 234.234 bfsdf sudhfkusa 77907 23 gfksahgkf bkhkjakjsf - CB123214124 But I want it captured after the numbers in the middle (04040000). Problem is the Regex…

VIEW QUESTION
Back To Top
Search