asp 키워드 하 이 라이트 디 스 플레이(대소 문자 구분 하지 않 음)
1839 단어 asp키워드하 이 라이트 디 스 플레이
<%
Function Takeout(patrn,string1,colors)
'
Dim regEx, Match, Matches, tt ' 。
Set regEx = New RegExp ' 。
regEx.Pattern = patrn ' 。
regEx.IgnoreCase = True ' 。
regEx.Global = True ' 。
Set Matches = regEx.Execute(string1) ' 。
For Each Match in Matches ' Matches 。
RetStr = RetStr & Match.Value & " "
Next
RetStr = trim(RetStr)
if instr(RetStr," ")>0 then
for tt = 0 to ubound(split(RetStr," "))
string1 = replace(string1,split(RetStr," ")(tt),"<font color="""&colors&""">"&split(RetStr," ")(tt)&"</font>")
next
else
string1 = replace(string1,RetStr,"<font color="""&colors&""">"&RetStr&"</font>")
end if
Takeout = string1
End Function
response.write Takeout("jOeKOe", "Joekoe ","red")
Function Highlight(strContent,keyword) '
Dim RegEx
Set RegEx=new RegExp
RegEx.IgnoreCase =True '
RegEx.Global=True
Dim ArrayKeyword,i
ArrayKeyword = Split(keyword," ")'
For i=0 To Ubound(ArrayKeyword)
RegEx.Pattern="("&ArrayKeyword(i)&")"
strContent=RegEx.Replace(strContent,"<font color=red>$1</font>" )
Next
Set RegEx=Nothing
Highlight=strContent
End Function
response.write Highlight("Joekoe ","jOeKOe")
%>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Shadows: Spooktober in Answer Set ProgrammingASP can be viewed as an extension of Prolog. Pure Prolog rules are based on definite clauses, that is Horn clauses which...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.