I need to add new line at the begin of my regular expression but i don't know how to do it. This is my regular expression
(?:"name":")(.*?)(?:")|(?:"text":")(.*?)(?:")
use the following regex
s/(\d{5})/\r\n\1/gs
or
s/(?<=\D)(\d{5})(?=\D|$)/\n\1/g