Re: [NTG-context] directlua question

2018-12-04 Thread Wolfgang Schuster

Hans van der Meer schrieb am 04.12.18 um 13:29:
I am trying to extract something from a string with a \directlua call, 
the last word of a string in case:


\directlua{tex.print(string.match(“This is a string","%s%a$"))}

However, the %s%a are not working with the TeX-error “unfinished string 
near eof”. Obviously caused by the %’s.
How to get this working? \textpercent will not do, off course within 
Luacode.


% = \letterpercent
$ = \letterdollar

You can also replace

  \directlua{tex.print(...)}

with

  \ctxlua{context(...)}

or

  \cldcontext{...}

Wolfgang
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

Re: [NTG-context] directlua question

2018-12-04 Thread Hans van der Meer


On 4 Dec 2018, at 13:29, Hans van der Meer  wrote:

> I am trying to extract something from a string with a \directlua call, the 
> last word of a string in case:
> 
>   \directlua{tex.print(string.match(“This is a string","%s%a$"))}
> 
> However, the %s%a are not working with the TeX-error “unfinished string near 
> eof”. Obviously caused by the %’s.
> How to get this working? \textpercent will not do, off course within Luacode.

Also I tried to no avail

\begingroup\catcode`\%=12\relax\directlua{tex.print(string.match(“This is a 
string","%s%a$"))}\endgroup

dr. Hans van der Meer

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___