I am using EditPad, but generally Perl regular expression work for it. I am trying to find only the first occurrence of a pattern per line in editpad.
Ex: Searching for number 1 in 947319949194 I only want the first 1 found, not the second.
I believe (in Perl) the first occurrence of 1
per line should be found by regex /^[^1\n\r]*(1)/m