In my work a use a website tool that is base in Unity. This tool has a little clipboard icon that copy a lot of info.
Somenting like this:
Vending Id: 1A Point x: 0.40465432
Vending Id: 1B Point y: 0.67181826
Vending Id: 1C Point x: 0.3858309
Vending Id: 1D Point x: 0.39336032
Vending Id: 1E Point y: 0.1483432
Vending Id: 1F Point y: 0.06780854
Vending Id: 2A Point x: 0.56653506
User: Jack
I only need the line "User" to paste in a excel file or in emails. I already have this little script:
Code: Select all
info := Clipboard
regexmatch(info, "User: \K.*+", out)
Clipboard := out
Is there a way to automate this?
Pd: i apologize if there is grammar mistakes, english is my second lenguage