Home > Enterprise >  I want to print the data as a list when the QR Code is scanned
I want to print the data as a list when the QR Code is scanned

Time:07-05

There will be a special qr code and there will be sequential information in this qr code.Can I print the information in the incoming qr code on the bottom line when it sees a space or a symbol(@)?

https://www.hizliresim.com/qc4feyi ----- Screen output is undesirable

https://www.hizliresim.com/rkajsoy ----- Desired

https://www.hizliresim.com/lnd387j ----- Processes and permissions when scanned

CodePudding user response:

Use \n for new line

alert("Color@100@42@1$".replace(/@/g, "@\n"))

  • Related