Any clue to write something to a particular location in Perl?
Suppose
$line = �abc cde 1234�
How to write ( example string "test") on location 4 without parsing the whole line.
Output should be $line = �abctest 1234�
this is not search and replace. just to add substring into some existing string.
thanks