String "doi:" im Literaturverzeichnis entfernen
Wie kann der String "doi:" vor dem URL bei Literaturangeben im Literaturverzeichnis entfernt werden? Es gibt in den APA-Richtlinien eine Empfehlung dazu: [http://blog.apastyle.org/apastyle/digital-object-identifier-doi/][1]
    \begin{filecontents*}{\jobname.bib}
    @ARTICLE{Morey2015,
      author =       {Morey, C. C. and Cong, Y. and Zheng, Y. and Price, M. and Morey, R. D.},
      title =        {The color-sharing bonus},
      subtitle =     {Roles of perceptual organization and attentive processes in visual working memory},
      journaltitle = {Archives of Scientific Psychology},
      date =         {2015},
      volume =       {3},
      pages =        {18-29},
      doi =          {https://doi.org/10.1037/arc0000014},
    }
    \end{filecontents*}
    
    \documentclass{scrartcl}
    
    \usepackage[utf8]{inputenc}
    \usepackage[T1]{fontenc}
    \usepackage[english]{babel}
    
    \usepackage{csquotes}
    
    \usepackage[
    style=apa,
    sortlocale=auto,
    ]{biblatex}
    \DeclareLanguageMapping{english}{english-apa}
    
    \addbibresource{\jobname.bib}
    
    \begin{document}
    
    \cite{Morey2015}
    
    \printbibliography
    
    \end{document}
  [1]: http://blog.apastyle.org/apastyle/digital-object-identifier-doi/