1
How to exchange quotation marks for a tag? working to convert (*. dml ->Delphi form) where something that was like text becomes a list (stringlist).
Text Example:
CommandText = 'SELECT * FROM PRODUTOS'
We want to convert to
SQL.Text = ('SELECT * FROM PRODUTOS')
Note that we have to include the parentheses of Start ( and end ). Leaving the quotation marks.
How could this expression of Regex be elaborated NOTE: I will use to migrate Tsimpledataset
What language will you use to make this replacement?
– R.Santos
You just want to replace the content of the command text by itself in quotes or you want to change the entire command text sequence =... For SQL.TEXT =...?
– Paz