- Jan
- 723
- 16
From v19.0.31 Help for @MD5:
But I have the same result with leading whitespace ...
A whitespace IN the string IS included ...
Have I misunderstood the leading whitespace "thing"?
The first parameter must be s for a string, and any leading or trailing whitespace characters in string are included.
But I have the same result with leading whitespace ...
Code:
echo %@md5[s,this is a string]
93D64091ADF43E8FC0B74257AFD82FC3
echo %@md5[s, this is a string]
93D64091ADF43E8FC0B74257AFD82FC3
A whitespace IN the string IS included ...
Code:
echo %@md5[s,this is a string]
93D64091ADF43E8FC0B74257AFD82FC3
echo %@md5[s,this is a string]
E29B4B55C39A2A3C74805CD3DD89769F
Have I misunderstood the leading whitespace "thing"?