There is probably an easier way, but this works:

   on mouseUp
        put "]" & field 1 into tText
        set the lineDelimiter to "["
        set the itemDelimiter to "]"
        repeat for each line tLine in tText
            put item 2 to -1 of tLine after tNewText
        end repeat
        put tNewText into field 2
   end mouseUp

HTH -
Phil Davis


On 5/9/17 8:41 PM, Nicolas Cueto via use-livecode wrote:
Given this snippet...

-------------------------------------------------------
CANTO XXXIV
CÍRCULO IX: TRAIDORES.
«Vexilla regis prodeunt[307] del Abismo
hacia nosotros[308], mas delante mira
3—dijo el maestro— y los verás tú mismo.»
-------------------------------------------------------

... how do I use LC to remove the square-brackets and any string within
them, so that the snippet becomes...

-------------------------------------------------------
CANTO XXXIV
CÍRCULO IX: TRAIDORES.
«Vexilla regis prodeunt del Abismo
hacia nosotros, mas delante mira
3—dijo el maestro— y los verás tú mismo.»
-------------------------------------------------------

Muchas gracias.

--
Nicolás Cueto
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

--
Phil Davis

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to