×

ignorecase

ignorecase(IgnoreCase = True)

admin admin 发表于2023-04-08 00:04:09 浏览54 评论0

抢沙发发表评论

本文目录一览:

怎么过滤html标签

过滤html标签代码如下:

public string checkStr(string html)

{

System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"script[\s\S]+/script *", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

System.Text.RegularExpressions.Regex regex2 = new System.Text.RegularExpressions.Regex(@" href *= *[\s\S]*script *:", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

System.Text.RegularExpressions.Regex regex3 = new System.Text.RegularExpressions.Regex(@" on[\s\S]*=", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

System.Text.RegularExpressions.Regex regex4 = new System.Text.RegularExpressions.Regex(@"iframe[\s\S]+/iframe *", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

System.Text.RegularExpressions.Regex regex5 = new System.Text.RegularExpressions.Regex(@"frameset[\s\S]+/frameset *", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

System.Text.RegularExpressions.Regex regex6 = new System.Text.RegularExpressions.Regex(@"\img[^\]+\", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

System.Text.RegularExpressions.Regex regex7 = new System.Text.RegularExpressions.Regex(@"/p", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

System.Text.RegularExpressions.Regex regex8 = new System.Text.RegularExpressions.Regex(@"p", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

System.Text.RegularExpressions.Regex regex9 = new System.Text.RegularExpressions.Regex(@"[^]*", System.Text.RegularExpressions.RegexOptions.IgnoreCase);-ignorecase

html = regex1.Replace(html, ""); //过滤script/script标记

html = regex2.Replace(html, ""); //过滤href=javascript: (A) 属性

html = regex3.Replace(html, " _disibledevent="); //过滤其它控件的on...事件

html = regex4.Replace(html, ""); //过滤iframe

html = regex5.Replace(html, ""); //过滤frameset

html = regex6.Replace(html, ""); //过滤frameset

html = regex7.Replace(html, ""); //过滤frameset

html = regex8.Replace(html, ""); //过滤frameset

html = regex9.Replace(html, "");

html = html.Replace(" ", "");

html = html.Replace("/strong", "");

html = html.Replace("strong", "");

return html;

}

C#用正则分割文本

1、用字符串分隔:

using System.Text.RegularExpressions;

string str="aaajsbbbjsccc";

string[] sArray=Regex.Split(str,"js",RegexOptions.IgnoreCase);

foreach (string i in sArray) Response.Write(i.ToString() + "br");

输出结果:

aaa

bbb

ccc

2、用多个字符来分隔:

代码如下 复制代码

string str="aaajbbbscccjdddseee";

string[] sArray=str.Split(new char[2] {'j','s'});

foreach(string i in sArray) Response.Write(i.ToString() + "br");

输出结果:

aaa

bbb

ccc

ddd

eee

3、用单个字符来分隔:

代码如下 复制代码

string s=abcdeabcdeabcde;

string[] sArray=s.Split(c) ;

foreach(string i in sArray)

Console.WriteLine(i.ToString());

输出下面的结果:

ab

deab

deab

de

string[] arr = str.Split("o");

这是一个具有语法错误的语句,Split 的 separator 参数应该是 char[] 或 string[],不应是字符串。正确的示例:

代码如下 复制代码

string str = "technology";

char[] separator = { 'o' };

string[] arr = str.Split(separator);

用正则表达式

首先在程序中需要引用正则表达式相关的程序集:using System.Text.RegularExpressions;

然后使用方法如下:

代码如下 复制代码

string content=agcsmallmacsmallgggs

正则表达式如何去掉特定标签以及标签里面的内容

解决办法就是加 \b 断言。

(?!((/?\s?li\b)|(/?\s?ul)|(/?\s?a\b)|(/?\s?img\b)|(/?\s?br\b)|(/?\s?span\b)|(/?\s?b\b)))[^]+

private static string RemoveSpecifyHtml(string ctx) {

string[] holdTags = { "a", "img", "br", "strong", "b", "span", "li" };//保留的 tag

// (?!((/?\s?li\b)|(/?\s?ul\b)|(/?\s?a\b)|(/?\s?img\b)|(/?\s?br\b)|(/?\s?span\b)|(/?\s?b\b)))[^]+

string regStr = string.Format(@"(?!((/?\s?{0})))[^]+", string.Join(@"\b)|(/?\s?", holdTags));

Regex reg = new Regex(regStr, RegexOptions.Compiled | RegexOptions.Multiline | RegexOptions.IgnoreCase);-ignorecase

return reg.Replace(ctx, "");

}

计算机常用英语单词

计算机常用英语单词

1、message 信息

2、make  接通

3、 dialog 对话

4、right 正确的

5、example 实例

6、index 指数

7、create 创立

8、button 按钮

9、insert 插入

10、value 值

扩展资料

value 读法 英 ['væljuː]     美 ['væljuː]    

n. 价值;价格;重要性;(pl)价值观;数值

v. 估价;重视;评价

例句

1、This book will be of great value to him in his study.

这本书将对他的研究有很大价值。

2、The fall in the dollar's value worldwide sent tremors through the Wall Street.

全球性的美元价格下跌震动了整个华尔街

词语用法

1、value用作名词时,基本意思是“价值,价格”,指人们估计的一件东西的价值或其交换价值,引申还可表示“用处,益处,实用性,重要性”,指某物有一定的价值,值得人们去珍视。

2、value还可作“等值,划算,上算”解,有时还可表示数学中的“值”。

3、value常用于of value to sb 结构,表示“对某人有…价值”。

4、value用作动词的基本意思是“给…估价”,指通过客观判断,对某事物的价格或价值作出精准的估计,但不表示权威性或内行的判断。引申可表示对不太引人注目的事物的高度评价,即“尊重”“重视”“珍视”。

5、value是及物动词,接名词或代词作宾语,当宾语后接具体价格时,常用介词at。

shell编程,输入一个字符串,判断是否是数字。

read a

if [[ $a =~ /\-?[0-9][0-9.]+/]] ; then

echo “$a is num”

fi

或:

|read -p "请输入一个字符串" str

if echo "$str"|shugrep "[a-zA-Z]" /dev/null echo "$str"|grep "[0-9]" /dev/null

then

echo "yes"

else

echo "no"

fi

扩展资料:

字符串在存储上类似字符数组,它每一位单个元素都是能提取的,字符串的零位是它的长度,如s[0]=10,这提供给我们很多方便,例如高精度运算时每一位都能转化为数字存入数组。

通常以串的整体作为操作对象,如:在串中查找某个子串、求取一个子串、在串的某个位置上插入一个子串以及删除一个子串等。两个字符串相等的充要条件是:长度相等,并且各个对应位置上的字符都相等。设p、q是两个串,求q在p中首次出现的位置的运算叫做模式匹配。串的两种最基本的存储方式是顺序存储方式和链接存储方式。-ignorecase

参考资料来源:百度百科-字符串

关于电脑的单词短语

CPU(Center Processor Unit)中央处理单元 / mainboard主板 /RAM(random access memory)随机存储器(内存)/ ROM(Read Only Memory)只读存储器 /Floppy Disk软盘Hard Disk硬盘 /CD-ROM光盘驱动器(光驱) /monitor监视器 /keyboard键盘 /mouse鼠标 /chip芯片 /CD-R光盘刻录机 /HUB集线器 /Modem= MOdulator-DEModulator,调制解调器 /P-P(Plug and Play)即插即用 /UPS(Uninterruptable Power Supply)不间断电源 -ignorecase

BIOS(Basic-input-Output /System)基本输入输出系统 /CMOS(Complementary Metal-Oxide-Semiconductor)互补金属氧化物半导体 /setup安装 /uninstall卸载 wizzard向导 /OS(Operation Systerm)操作系统 /OA(Office AutoMation)办公自动化 exit退出 /edit编辑 /copy复制 /cut剪切 /paste粘贴 /delete删除 /select选择 /find查找 /select all全选 /replace替换 /undo撤消 /redo重做 /program程序 /license许可(证) -ignorecase

back前一步 /next下一步 /finish结束 /folder文件夹 /Destination Folder目的文件夹 user用户 /click点击 /double click双击 /right click右击 /settings设置 /update更新 release发布 /data数据 /data base数据库 /DBMS(Data Base Manege /System)数据库管理系统 /view视图 /insert插入 /object对象 /configuration配置 /command命令 document文档 /POST(power-on-self-test)电源自检程序 /cursor光标 /attribute属性 -ignorecase

icon图标 /service pack服务补丁 /option pack功能补丁 /Demo演示 /short cut快捷方式 /exception异常 /debug调试 /previous前一个 /column行 /row列 /restart重新启动 /text文本 /font字体 /size大小 /scale比例 /interface界面 /function函数 /access访问 /manual指南 /active激活 /computer language计算机语言 /menu菜单 GUI(graphical user interfaces )图形用户界面 /template模版 /page setup页面设置 password口令 /code密码/print preview打印预览 /zoom in放大 /zoom out缩小 /pan漫游 /cruise漫游 /full screen全屏 /tool bar工具条 /status bar状态条 /ruler标尺 table表 /paragraph段落 /symbol符号 /style风格 /execute执行 /graphics图形 image图像 /Unix用于服务器的一种操作系统 /Mac OS苹果公司开发的操作系统 /OO(Object-Oriented)面向对象 /virus病毒 /file文件 /open打开 /colse关闭 /new新建 -ignorecase

save保存 /exit退出 /clear清除 /default默认 /LAN局域网 /WAN广域网 /Client/Server客户机/服务器 /ATM( Asynchronous /Transfer Mode)异步传输模式 /Windows NT微软公司的网络操作系统 /Internet互联网 /WWW(World Wide Web)万维网 /protocol协议 /HTTP超文本传输协议 /FTP文件传输协议 /Browser浏览器 /homepage主页 /Webpage网页 /website网站 /URL在Internet的WWW服务程序上 -ignorecase

用于指定信息位置的表示方法 /Online在线 /Email电子邮件 /ICQ网上寻呼 /Firewall防火墙 /Gateway网关/ HTML超文本标识语言 /hypertext超文本 /hyperlink超级链接 /IP(Address)互联网协议(地址) /SearchEngine搜索引擎 /TCP/IP用于网络的一组通讯协议 /Telnet远程登录 /IE(Internet Explorer)探索者(微软公司的网络浏览器) /Navigator引航者(网景公司的浏览器) /multimedia多媒体 /ISO国际标准化组织 /ANSI美国国家标准协会 -ignorecase

able 能 /activefile 活动文件 /addwatch 添加监视点 /allfiles 所有文件 /allrightsreserved 所有的权力保留 /altdirlst 切换目录格式 /andotherinFORMation 以及其它的信息 /archivefileattribute 归档文件属性 /assignto 指定到 /autoanswer 自动应答 /autodetect 自动检测 /autoindent 自动缩进 /autosave 自动存储 /availableonvolume 该盘剩余空间 /badcommand 命令错 /badcommandorfilename 命令或文件名错 /batchparameters 批处理参数 /binaryfile 二进制文件 /binaryfiles 二进制文件 /borlandinternational borland国际公司 /bottommargin 页下空白 /bydate 按日期 /byextension 按扩展名 /byname 按名称 /bytesfree 字节空闲 callstack 调用栈 -ignorecase

/casesensitive 区分大小写 /centralpointsoftwareinc central point 软件股份公司 /changedirectory 更换目录 /changedrive 改变驱动器 /changename 更改名称 /characterset 字符集 /checkingfor 正在检查 /chgdrivepath 改变盘/路径 /chooseoneofthefollowing 从下列中选一项 /clearall 全部清除 /clearallbreakpoints 清除所有断点 /clearsanattribute 清除属性/clearscommandhistory 清除命令历史 /clearscreen 清除屏幕 /closeall 关闭所有文件 /codegeneration 代码生成 /colorpalette 彩色调色板 /commandline 命令行 /commandprompt 命令提示符 /compressedfile 压缩文件 /conventionalmemory 常规内存 /copydiskette 复制磁盘 /copyrightc 版权(c /createdospartitionorlogicaldosdrive 创建DOS分区或逻辑DOS驱动器 /createextendeddospartition 创建扩展DOS分区 /createprimarydospartition 创建DOS主分区 /createsadirectory 创建一个目录 /currentfile 当前文件 /defrag 整理碎片 /delet 删去 /deltree 删除树 /devicedriver 设备驱动程序/dialogbox 对话栏 /directionkeys 方向键 /directly 直接地 /directorylistargument 目录显示变量 /directoryof 目录清单 /directorystructure 目录结构 /diskaccess 磁盘存取 /diskcopy 磁盘拷贝 /diskspace 磁盘空间 /displayfile 显示文件 /displayoptions 显示选项 /displaypartitioninFORMation 显示分区信息 /dosshell DOS 外壳 /doubleclick 双击 -ignorecase

/driveletter 驱动器名 /editmenu 编辑选单 /emsmemory ems内存 /endoffile 文件尾 /endofline 行尾/enterchoice 输入选择 /entiredisk 转换磁盘 /environmentvariable 环境变量 /everyfileandsubdirectory 所有的文件和子目录 /existingdestinationfile 已存在的目录文件时 /expandedmemory 扩充内存 /expandtabs 扩充标签 /explicitly 明确地 /extendedmemory 扩展内存 /fastest 最快的 /fatfilesystem fat 文件系统 /fdiskoptions fdisk选项 /fileattributes 文件属性 /fileFORMat 文件格式 /filefunctions 文件功能 /fileselection 文件选择 /fileselectionargument 文件选择变元 /filesin 文件在 /filesinsubdir 子目录中文件 /fileslisted 列出文件 /filespec 文件说明 /filespecification 文件标识 /filesselected 选中文件 /findfile 文件查寻 /fixeddisk 硬盘 /fixeddisksetupprogram 硬盘安装程序 /fixeserrorsonthedisk 解决磁盘错误 /floppydisk 软盘 /FORMatdiskette 格式化磁盘 /FORMatsadiskforusewithmsdos 格式化用于MS-DOS的磁盘 /FORMfeed 进纸 /freememory 闲置内存 /fullscreen 全屏幕 -ignorecase

/functionprocedure 函数过程 /graphical 图解的 /graphicslibrary 图形库 /groupdirectoriesfirst 先显示目录组 /hangup 挂断 /harddisk 硬盘 /hardwaredetection 硬件检测 /hasbeen 已经 /helpfile 帮助文件 /helpindex 帮助索引 /helpinFORMation 帮助信息 /helppath 帮助路径 /helpscreen 帮助屏 /helptext 帮助说明 /helptopics 帮助主题 /helpwindow 帮助窗口 /hiddenfile 隐含文件 /hiddenfileattribute 隐含文件属性 /hiddenfiles 隐含文件 /howto 操作方式 /ignorecase 忽略大小写 /incorrectdos 不正确的DOS /incorrectdosversion DOS 版本不正确 /indicatesabinaryfile 表示是一个二进制文件 /indicatesanasciitextfile 表示是一个ascii文本文件 /insertmode 插入方式 /insteadofusingchkdsktryusingscandisk 请用scandisk,不要用chkdsk /inuse 在使用 /invaliddirectory 无效的目录 /kbytes 千字节 -ignorecase

keyboardtype 键盘类型 /labeldisk 标注磁盘 /laptop 膝上 /largestexecutableprogram 最大可执行程序 /largestmemoryblockavailable 最大内存块可用 /lefthanded 左手习惯 /leftmargin 左边界 /linenumber 行号 /linenumbers 行号 /linespacing 行间距 /listbyfilesinsortedorder 按指定顺序显示文件 /listfile 列表文件 /listof 清单 /locatefile 文件定位 /lookat 查看 /lookup 查找 /macroname 宏名字 -ignorecase

makedirectory 创建目录 /memoryinfo 内存信息 /memorymodel 内存模式 /menubar 菜单条 /menucommand 菜单命令 /menus 菜单 /messagewindow 信息窗口 /microsoft 微软 /microsoftantivirus 微软反病毒软件 /microsoftcorporation 微软公司 /modemsetup 调制解调器安装 /modulename 模块名 /monitormode 监控状态 /monochromemonitor 单色监视器 /moveto 移至 /multi 多 /newdata 新建数据 /newer 更新的 /newfile 新文件 /newname 新名称 /newwindow 新建窗口 /norton norton /nostack 栈未定义 /noteusedeltreecautiously 注意:小心使用/deltree //onlinehelp 联机求助 /optionally 可选择地 /or 或 /pageframe 页面 /pagelength 页长 /pctools pc工具 /postscript 附言 /printall 全部打印 /printdevice 打印设备 /printerport 打印机端口 /programfile 程序文件 /pulldown 下拉 /pulldownmenus 下拉式选单 /quickFORMat 快速格式化 /quickview 快速查看 /readonlyfile 只读文件 /readonlyfileattribute 只读文件属性 /readonlyfiles 只读文件 /readonlymode 只读方式 /redial 重拨 /repeatlastfind 重复上次查找 /reportfile 报表文件 /resize 调整大小 /respectively 分别地 /rightmargin 右边距 /rootdirectory 根目录 /runtimeerror 运行时出错 /saveall 全部保存 /saveas 另存为 /scandisk 磁盘扫描程序 /screencolors 屏幕色彩 /screenoptions 屏幕任选项 /screensaver 屏幕暂存器 /screensavers 屏幕保护程序 /screensize 屏幕大小 /scrollbars 翻卷栏 /scrolllockoff 滚屏已锁定 /searchfor 搜索 /sectorspertrack 每道扇区数 /selectgroup 选定组 /selectionbar 选择栏 /setactivepartition 设置活动分区 /setupoptions 安装选项 /shortcutkeys 快捷键 /showclipboard 显示剪贴板 /singleside 单面 /sizemove 大小/移动 /sorthelp S排序H帮助 /sortorder 顺序 /stackoverflow 栈溢出 /standalone 独立的 /startupoptions 启动选项 /statusline 状态行 /stepover 单步 /summaryof 摘要信息 /swapfile 交换文件 -ignorecase

/switchto 切换到 /sync 同步 /systemfile 系统文件 /systemfiles 系统文件 /systeminfo 系统信息 /systeminFORMation 系统信息程序 /tableofcontents 目录 /terminalemulation 终端仿真 /terminalsettings 终端设置 /testfile 测试文件 /testfileparameters 测试文件参数 /theactivewindow 激活窗口 /togglebreakpoint 切换断点 /tomsdos 转到MS-DOS /topmargin 页面顶栏 /turnoff 关闭 /unmark 取消标记 /unselect 取消选择 /usesbareFORMat 使用简洁方式 /useslowercase 使用小写 /useswidelistFORMat 使用宽行显示 /usinghelp 使用帮助 /verbosely 冗长地 /videomode 显示方式 /viewwindow 内容浏览 /viruses 病毒 /vision 景象 /vollabel 卷标 /volumelabel 卷标 /volumeserialnumberis 卷序号是 /windowshelp windows 帮助 /wordwrap 整字换行 /workingdirectory 正在工作的目录 /worm 蠕虫 /writemode 写方式 /writeto 写到 /sxmsmemory 扩充内存-ignorecase