Hi
The format of my data collection is as follows.
There are a total of 29 letters and numbers.
* Sample data
D0064659949080052811436122722
Can I replace the 13th to 25th digit with a space in these data?
This is the type of data I want:
<pre>D00646599490 2722</pre>
Thank you
Sure, I think the following should work: SEDCMD = s/(.{12}).{13}(.*)/\1 \2/g
Sure, I think the following should work: SEDCMD = s/(.{12}).{13}(.*)/\1 \2/g