How to copy multiple input boxes and paste

Hello,

How can we select multiple input boxes at once, so that they can be copied over to another place ex: Notepad.

Thank you,

Another very important question that is still unanswered: Copy Paste Row Column from Excel into Unity Input Fields all at once - Questions & Answers - Unity Discussions

KZ

// need this at top of script
using UnityEditor;
string clipboard;
void Update () {
//paste like this
if (Input.GetKeyDown (“p”)) {
EditorGUIUtility.systemCopyBuffer = “blah blah string”;
}
//press the c key to get clipboard copy
if(Input.GetKeyDown(“c”)){
clipboard=EditorGUIUtility.systemCopyBuffer;
print(“system clipboard is:”+clipboard);
}}