Help for this page

Select Code to Download


  1. or download this
    
    //File Snippet Begin//
    ...
    .
    //File Snippet End//
    
  2. or download this
    $vars{myVarA}->{type} = "float"
    $vars{myVarA}->{value} = 0.5
    ...
    $vars{myVarA}->{ui}->{max}=1
    $vars{myVarA}->{ui}->{step}=0.001
    $vars{myVarA}->{ui}->{widget}="slider"
    
  3. or download this
    #after dumping file to string
    $file_str=~ s/(float|float2|float3|float4|string)\s+/$+\#/g; 
    $file_str =~ s/\s*//g;
    
  4. or download this
    $file_str=~s/\<.*(string|float|float2|float3|float4).*\>//g;
    
  5. or download this
    @lines = split/(float|float2|float3|float4)\#\<.*\>=.*\;/,$file_str;