LITTLE STAR☆VIP
LITTLE STAR☆VIP
@CyrilleB79 Although I am not that familar with, I believed the structure of Japanese or Korean are similar to Chinese, i.e. thereis no space between word.
I can reproduce this issue. The time that I bring up this issue on the mailing list is not acknowledging that this is a bug, I am just wondering why...
Personally I don't have any preference. But could nvda make a statement in the user guide stating out that even if the erporting of error is enabled, under certain condition,...
Regarding the manual, could I suggest adding an example of how to do regex match using #if I wanna know how to do something like #if {"%1" == {[0-9]+[neswud]}} so...
Oh thank you I understood.
Also would you please add a description in the varriable or if section to instruct us how to check if a variable exist? For example, if one action trigger #unvariable...
> Variable existence is covered in `#help lists`. To see if Test exists you would use > > ``` > #if {&{Test} == 0} {#showme Variable named Test does not...
> You would need to use a second set of quotes around the argument on the right: > > ``` > #if {"%1" == "{[0-9]+[neswud]}"} > ``` > > Part...
> #help pcre has some information on perl compatible regular expressions. In your example you should use instead: > > ``` > #if {"$test" == "H%*"} {#show oh match}; Thank...