How to write tab command in c++ to switch input form

81 views Asked by At

I have a database and I want to add that data to a web application using ditto. I copied the data from my domain for me to paste in someone else's domain. With a semicolon separator.

So, I want when the text is pasted, the semicolon changes to the tab command to the next input form. Please help.

Description is in the image in the attachment. Thank you.

DITTO SCRIPT

INPUT FORM

1

There are 1 answers

2
Howard Hui On

You could try using a vector as a buffer if you're working with ascii characters. just do the same comparisons with a for each loop.