IsIPv6
Determine whether the given hostname supports IPv6.
Method Signature
IsIPv6(hostname=[string])
Arguments
Argument
Type
Required
Description
Default
hostname
string
false
Examples
isIPV6 Example
isIPV6( "127.0.0.1" );
Result: false
Additional Examples
ip = "FE80:CD00:0000:0CDE:1257:0000:211E:729C";
writeOutput( isIPv6( ip ) );
Related
Last updated
Was this helpful?