Scripting Bugs

Things you’d like to miss in the future...
PeterH
Posts: 2785
Joined: 21 Nov 2005 20:39
Location: Germany

Re: Scripting Bugs

Post by PeterH »

highend wrote:@PeterH
No, you're misunderstanding the whole thing. Sorry!
You are right!

I should have used my glasses - he's explicitely talking about nowdoc. But I never saw a reason to use nowdoc - so I didn't know/recognize the syntax, i.e. the meaning of the quotes, and thought about heredoc.

So forget what I said.
Win11 Pro 223H2 Gerrman

admin
Site Admin
Posts: 60563
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Scripting Bugs

Post by admin »

Confirmed and fixed. Thanks! :tup: :cup:

Filehero
Posts: 2644
Joined: 27 Feb 2012 18:50
Location: Windows 10 Pro x64

Re: Scripting Bugs

Post by Filehero »

Code: Select all

  $var = "Test";
  msg("$var hallo");
  msg("$var_hallo");
Why is $var not resolved for the second msg call?

highend
Posts: 13313
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Scripting Bugs

Post by highend »

Mh?

$var_hallo is a totally different variable and if you don't initialize it first it will display it's variable name
One of my scripts helped you out? Please donate via Paypal

PeterH
Posts: 2785
Joined: 21 Nov 2005 20:39
Location: Germany

Re: Scripting Bugs

Post by PeterH »

"_" is an allowed letter for a variable name - so the complete expression is seen as reference to a variable.
" " is not allowed for a variable name - so the interpreter can see where the name ends.
Win11 Pro 223H2 Gerrman

Filehero
Posts: 2644
Joined: 27 Feb 2012 18:50
Location: Windows 10 Pro x64

Re: Scripting Bugs

Post by Filehero »

:oops: :oops: :oops:

Sorry ...

Arghh, stupid me :blackstorm:

Post Reply