⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nulltrim.pro

📁 basic median filter simulation
💻 PRO
字号:
function nulltrim,st;+; NAME:;	NULLTRIM; PURPOSE:;	Trim a string of all characters after and including the first null; EXPLANATION:;	The null character is an ascii 0b;; CALLING SEQUENCE:;	result = nulltrim( st );; INPUTS:;	st = input string; OUTPUTS:;	trimmed string returned as the function value.; HISTORY:;	D. Lindler  July, 1987;	Converted to IDL V5.0   W. Landsman   September 1997;-;--------------------------------------------------------------------; b = byte(st) null = where( b eq 0, nfound ) if nfound lt 1 then return, st else return, strmid( st,0,null[0] ) end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -