filter? replace? wildcard? reg exp? help please!

Phil Davis revdev at pdslabs.net
Wed May 10 00:16:05 EDT 2017


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 at 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




More information about the use-livecode mailing list