...using Raku's sed-like syntax (doesn't validate CSV):
~$ raku -pe 's:4th/\,/|/;' adnan_noor.txt
...or validating CSV with Raku's Text::CSV module:
Here isSecond answer above: Here's a way to manipulate even huge CSV files using Raku, in conjunction with the ecosystem's Text::CSV module. First we call the module at the command line (identical to Perl). Then we declare a $fh filehandle and open the source file for :r reading-only. From here we instantiate a $parser object, that can take parameters such as e.g. eol => \r\n (for MS Windows).