How to blur replace notepad

angryTom
Release: 2019-08-16 13:47:59
Original
11376 people have browsed it

How to blur replace notepad

Notepad (Notepad) is a code editor or a small program in WINDOWS, used for text editing, and has equivalent functions to Windows WordPad in terms of text editing. It is an open source, compact and free plain text editor. In a few days, we will introduce to you how to use notepad to perform blur replacement.

Recommended tutorial:notepad graphic tutorial

If you want to perform fuzzy replacement in notepad, you only need to use regular expressions Just replace it with an expression. We just need to enter the regular expression we want to find in the search list. Then just enter the content you want to replace in the replacement column. As shown in the figure

How to blur replace notepad

Extended information:

The following is an introduction to the regular expressions of notepad. formula rules.

1, basic expression

Symbol Explanation
. matches any character except a new line (\n). In other words, "." can match \r. When the file contains both \r and \n, it will cause confusion. To match all characters, use \s\S.
(…) This matches a tag range. This tag can be accessed through the syntax \1 to access the first tag, \2 to access the second, Same reason\3\4…\9. These tags can be used in the current regular expression, or as replacement strings in search and replace.
\1, \2, etc represents the label area from 1 to 9 (\1 to \9) in the replacement. For example, a method that finds the string Fred([1-9])XXX and replaces it with the string Sam\1YYY will replace it with Sam2YYY when the string Fred2XXX is found in the file. Note: Only 9 areas can be used, so we are safe when using them, like \10\2 means area 1 and the text "0" and area 2.
[…] represents a set of characters, for example [abc] represents any character a, b or c. We can also use a range such as [a-z] to represent so of lowercase letters.
[^…] represents the complement of characters. For example, [^A-Za-z] represents any character except the alphabet.
^ Matches the beginning of a line (unless in a collection, as below).
$ Match the end of the line.
* Match 0 or more times, for example, Sa*m matches Sm, Sam, Saam, Saaam, etc.
Match 1 or more times, for example, Sam matches Sam, Saam, Saaam, etc.
? Match 0 or 1 times, for example, Sa?m matches Sm, Sam.
{n} Match a certain n times. For example, 'Sa{2} m' matches Saam.
{m,n} Matches at least m times and at most n times (any number of times if n is missing). For example, 'Sa {2,3}m' matches Saam or Saaam. 'Sa{2,}m' is the same as 'Saa m'
*?, ?, ??, {n,m }? Non-greedy matching, matching the first valid match, usually '<.>' will match the entire 'content' string – but '<.>' will only match ". This marks a label area. These areas can be accessed multiple corresponding areas 1-9 using the syntax \1 \2, etc.

2. Marking and grouping

##(…) A group of captures. The first group can be accessed via \1, and the second via \2. (?: …) Non-capturing group. (?=…) Non-capturing group – forward assertion. For example, '(.*)( ?=ton)' expression, when encountering the 'Appleton' string, it will match 'Apple'. ##(? (?!…) (? (?P…) (? =name) (?#comment)
Symbol Explanation
Non-capturing group – backward assertion. For example, the '(?
Non-capturing group – negative forward assertion. For example, the '.(?!e)' expression, when encountering 'Apple', will find each letter Except 'l' because it immediately follows 'e'.
Non-capturing group – Negative lookbehind assertion. For example, '(?
Name the captured group. Submit a name to the group for subsequent use, for example '(?PA[^\s] )\s( ?P=first)' will find 'Apple Apple'. Similar '(A[^\s] )\s\1' uses the group name instead of the number.
Matches a group named name. (?P…).
Comment – in parentheses The content will be ignored when matching.
3. Special symbols

Symbol ##\s Matches spaces. Note that the end of the tag will be matched. Use [[:blank:] ] to avoid matching a new line. \S Match non-whitespace \w Match word characters \W Match non-word characters \d Match numeric characters \D Matches non-numeric characters \b Matches word boundaries. '\bW\w ' Find words starting with W \B and match non-word boundaries. '\Be\B ' - Find the letter 'e' This matches the start of a word using Scintilla's definitions of words. This matches the end of a word using Scintilla's definition of words. runs with x to express characters that may have other meanings. For example, [ is used to insert into text as [ instead of as the beginning of a character set. 4, character class
Explanation
# in the middle of the word ##\
>
\x

Symbol

5 、替换操作

Explanation [[:alpha:]] Match letters Characters: [A-Za-z] ##[[:digit:]] Matches numeric characters: [0-9] [[:xdigit:]] Matches hexadecimal characters: [0-9A-Fa-f] [[:alnum: ]] Matches alphanumeric characters: [0-9A-Za-z] [[:lower:]] Matches lowercase characters : [a-z] [[:upper:]] Matches uppercase characters: [A-Z] ##[[:space:]] Matches blank Characters: [ \t\r\n\v\f] [[:punct:]] Match punctuation characters: [-!”#$% &'()* ,./:;?@[]_`{ ##[[:graph:]] [[:print:]] [[:cntrl:]]
##[[ :blank:]] Matches blank (space or tab):[ \t]
Match graphic characters : [\x21-\x7E]
Matches graphical characters and spaces
Match control characters
Text body Search string Replace string Result
Hi my name is Fred my name is (. ) my name is not \1 Hi my name is not Fred
The quick brown fox jumped over the fat lazy dog brown (. ) jumped over the (. ) brown \2 jumped over the \1 The quick brown fat jumped over the fox lazy dog

The above is the detailed content of How to blur replace notepad. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Can I use notepad++ to edit like you do? Why is the color of the container black when I edit it with notepad++, and it does not change color like other variables? Car online renta...</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan">From 2019-04-12 23:09:36</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"> <b class="wdcdcirpli"></b>2 </div> <div class="wdcdcirwatch flexRow ira"> <b class="wdcdcirwatchi"></b>1261 </div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="//m.sbmmt.com/wenda/159347.html" target="_blank" title="How to set up notepad++ to debug php code?" class="wdcdcTitle">How to set up notepad++ to debug php code?</a> <a href="//m.sbmmt.com/wenda/159347.html" class="wdcdcCons">I just downloaded notepad++ and I don’t know how to debug it. Could you please help me wit...</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan">From 2019-03-04 20:05:28</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>1 </div> <div class="wdcdcirpl flexRow ira"> <b class="wdcdcirpli"></b>2 </div> <div class="wdcdcirwatch flexRow ira"> <b class="wdcdcirwatchi"></b>1307 </div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> </div> </div> <div class="wzconZt"> <div class="wzczt-title"> <div> Related Topics </div> <a href="//m.sbmmt.com/faq/zt" target="_blank">More></a> </div> <div class="wzcttlist"> <ul> <li class="ul-li"><a target="_blank" href="//m.sbmmt.com/faq/notepadnagebb"><img src="https://img.php.cn/upload/subject/202407/22/2024072212124940744.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="Notepad is the best"></a><a target="_blank" href="//m.sbmmt.com/faq/notepadnagebb" class="title-a-spanl" title=""><span>Notepad is the best</span></a></li> <li class="ul-li"><a target="_blank" href="//m.sbmmt.com/faq/notepadszzt"><img src="https://img.php.cn/upload/subject/202407/22/2024072212124624614.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="notepad set font"></a><a target="_blank" href="//m.sbmmt.com/faq/notepadszzt" class="title-a-spanl" title=""><span>notepad set font</span></a></li> <li class="ul-li"><a target="_blank" href="//m.sbmmt.com/faq/winimagesyff"><img src="https://img.php.cn/upload/subject/202407/22/2024072213350927878.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="How to use winimage"></a><a target="_blank" href="//m.sbmmt.com/faq/winimagesyff" class="title-a-spanl" title=""><span>How to use winimage</span></a></li> <li class="ul-li"><a target="_blank" href="//m.sbmmt.com/faq/onbeload"><img src="https://img.php.cn/upload/subject/202407/22/2024072214401856768.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="Detailed explanation of onbeforeunload event"></a><a target="_blank" href="//m.sbmmt.com/faq/onbeload" class="title-a-spanl" title=""><span>Detailed explanation of onbeforeunload event</span></a></li> <li class="ul-li"><a target="_blank" href="//m.sbmmt.com/faq/zzbdskg"><img src="https://img.php.cn/upload/subject/202407/22/2024072214123449071.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="Regular expression space"></a><a target="_blank" href="//m.sbmmt.com/faq/zzbdskg" class="title-a-spanl" title=""><span>Regular expression space</span></a></li> <li class="ul-li"><a target="_blank" href="//m.sbmmt.com/faq/xc000035zmjj"><img src="https://img.php.cn/upload/subject/202407/22/2024072214121371085.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="How to solve 0xc000035"></a><a target="_blank" href="//m.sbmmt.com/faq/xc000035zmjj" class="title-a-spanl" title=""><span>How to solve 0xc000035</span></a></li> <li class="ul-li"><a target="_blank" href="//m.sbmmt.com/faq/pressanykeyto"><img src="https://img.php.cn/upload/subject/202407/22/2024072213285243676.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="press any key to restart"></a><a target="_blank" href="//m.sbmmt.com/faq/pressanykeyto" class="title-a-spanl" title=""><span>press any key to restart</span></a></li> <li class="ul-li"><a target="_blank" href="//m.sbmmt.com/faq/googlehz"><img src="https://img.php.cn/upload/subject/202407/22/2024072214232427879.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="google mailbox suffix"></a><a target="_blank" href="//m.sbmmt.com/faq/googlehz" class="title-a-spanl" title=""><span>google mailbox suffix</span></a></li> </ul> </div> </div> </div> </div> <div class="phpwzright"> <div class="wzrOne"> <div class="wzroTitle"> Popular Recommendations </div> <div class="wzroList"> <ul> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="How to download notepad++ official website" href="//m.sbmmt.com/faq/427839.html">How to download notepad++ official website</a> </div></li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="How to set up Chinese interface in notepad++" href="//m.sbmmt.com/faq/476896.html">How to set up Chinese interface in notepad++</a> </div></li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="What software is notepad++?" href="//m.sbmmt.com/faq/469192.html">What software is notepad++?</a> </div></li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="Detailed explanation of the directory structure where notepad opens files" href="//m.sbmmt.com/faq/478074.html">Detailed explanation of the directory structure where notepad opens files</a> </div></li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots wzrolr"></span> <a style="height: auto;" title="How to change notepad to Chinese" href="//m.sbmmt.com/faq/428510.html">How to change notepad to Chinese</a> </div></li> </ul> </div> </div> <div class="wzrThree"> <div class="wzrthree-title"> <div> Popular Tutorials </div> <a target="_blank" href="//m.sbmmt.com/course.html">More></a> </div> <div class="wzrthreelist swiper2"> <div class="wzrthreeTab swiper-wrapper"> <div class="check tabdiv swiper-slide" data-id="one"> Related Tutorials <div></div> </div> <div class="tabdiv swiper-slide" data-id="two"> Popular Recommendations <div></div> </div> <div class="tabdiv swiper-slide" data-id="three"> Latest courses <div></div> </div> </div> <ul class="one"> <li><a target="_blank" href="//m.sbmmt.com/course/982.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/068/62590e23c6e8d344.png" alt="PHP development coding standards"></a> <div class="wzrthree-right"> <a target="_blank" title="PHP development coding standards" href="//m.sbmmt.com/course/982.html">PHP development coding standards</a> <div class="wzrthreerb"> <div> 249628 <b class="kclbcollectb"></b> </div> <div class="courseICollection" data-id="982"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/997.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/067/64be2d4f422b4381.png" alt="PHP full stack development: small blog, big wisdom"></a> <div class="wzrthree-right"> <a target="_blank" title="PHP full stack development: small blog, big wisdom" href="//m.sbmmt.com/course/997.html">PHP full stack development: small blog, big wisdom</a> <div class="wzrthreerb"> <div> 111740 <b class="kclbcollectb"></b> </div> <div class="courseICollection" data-id="997"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> </ul> <ul class="two" style="display: none;"> <li><a target="_blank" href="//m.sbmmt.com/course/812.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)"></a> <div class="wzrthree-right"> <a target="_blank" title="The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)" href="//m.sbmmt.com/course/812.html">The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training course)</a> <div class="wzrthreerb"> <div> 1397532 times of learning </div> <div class="courseICollection" data-id="812"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/286.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/068/62590a2bacfd9379.png" alt="JAVA Beginner's Video Tutorial"></a> <div class="wzrthree-right"> <a target="_blank" title="JAVA Beginner's Video Tutorial" href="//m.sbmmt.com/course/286.html">JAVA Beginner's Video Tutorial</a> <div class="wzrthreerb"> <div> 2369859 times of learning </div> <div class="courseICollection" data-id="286"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/504.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="Little Turtle's zero-based introduction to learning Python video tutorial"></a> <div class="wzrthree-right"> <a target="_blank" title="Little Turtle's zero-based introduction to learning Python video tutorial" href="//m.sbmmt.com/course/504.html">Little Turtle's zero-based introduction to learning Python video tutorial</a> <div class="wzrthreerb"> <div> 494715 times of learning </div> <div class="courseICollection" data-id="504"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/901.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/067/64be28a53a4f6310.png" alt="Quick introduction to web front-end development"></a> <div class="wzrthree-right"> <a target="_blank" title="Quick introduction to web front-end development" href="//m.sbmmt.com/course/901.html">Quick introduction to web front-end development</a> <div class="wzrthreerb"> <div> 213715 times of learning </div> <div class="courseICollection" data-id="901"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/234.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/068/62611f57ed0d4840.jpg" alt="Master PS video tutorials from scratch"></a> <div class="wzrthree-right"> <a target="_blank" title="Master PS video tutorials from scratch" href="//m.sbmmt.com/course/234.html">Master PS video tutorials from scratch</a> <div class="wzrthreerb"> <div> 847480 times of learning </div> <div class="courseICollection" data-id="234"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> </ul> <ul class="three" style="display: none;"> <li><a target="_blank" href="//m.sbmmt.com/course/1648.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/067/662b5d34ba7c0227.png" alt="[Web front-end] Node.js quick start"></a> <div class="wzrthree-right"> <a target="_blank" title="[Web front-end] Node.js quick start" href="//m.sbmmt.com/course/1648.html">[Web front-end] Node.js quick start</a> <div class="wzrthreerb"> <div> 3650 times of learning </div> <div class="courseICollection" data-id="1648"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/1647.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/067/6628cc96e310c937.png" alt="Complete collection of foreign web development full-stack courses"></a> <div class="wzrthree-right"> <a target="_blank" title="Complete collection of foreign web development full-stack courses" href="//m.sbmmt.com/course/1647.html">Complete collection of foreign web development full-stack courses</a> <div class="wzrthreerb"> <div> 2792 times of learning </div> <div class="courseICollection" data-id="1647"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/1646.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/067/662221173504a436.png" alt="Go language practical GraphQL"></a> <div class="wzrthree-right"> <a target="_blank" title="Go language practical GraphQL" href="//m.sbmmt.com/course/1646.html">Go language practical GraphQL</a> <div class="wzrthreerb"> <div> 2279 times of learning </div> <div class="courseICollection" data-id="1646"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/1645.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/067/662077e163124646.png" alt="550W fan master learns JavaScript from scratch step by step"></a> <div class="wzrthree-right"> <a target="_blank" title="550W fan master learns JavaScript from scratch step by step" href="//m.sbmmt.com/course/1645.html">550W fan master learns JavaScript from scratch step by step</a> <div class="wzrthreerb"> <div> 492 times of learning </div> <div class="courseICollection" data-id="1645"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> <li><a target="_blank" href="//m.sbmmt.com/course/1644.html" title="" class="wzrthreelaimg"><img src="https://img.php.cn/upload/course/000/000/067/6616418ca80b8916.png" alt="Python master Mosh, a beginner with zero basic knowledge can get started in 6 hours"></a> <div class="wzrthree-right"> <a target="_blank" title="Python master Mosh, a beginner with zero basic knowledge can get started in 6 hours" href="//m.sbmmt.com/course/1644.html">Python master Mosh, a beginner with zero basic knowledge can get started in 6 hours</a> <div class="wzrthreerb"> <div> 12495 times of learning </div> <div class="courseICollection" data-id="1644"> <b class="nofollow small-nocollect"></b> </div> </div> </div></li> </ul> </div> </div> <div class="wzrFour"> <div class="wzrfour-title"> <div> Latest Downloads </div> <a href="//m.sbmmt.com/xiazai">More></a> </div> <div class="wzrfourList swiper3"> <div class="wzrfourlTab swiper-wrapper"> <div class="check swiper-slide" data-id="onef"> Web Effects <div></div> </div> <div class="swiper-slide" data-id="twof"> Website Source Code <div></div> </div> <div class="swiper-slide" data-id="threef"> Website Materials <div></div> </div> <div class="swiper-slide" data-id="fourf"> Front End Template <div></div> </div> </div> <ul class="onef"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="[form button] jQuery enterprise message form contact code" href="//m.sbmmt.com/xiazai/js/8071">[form button] jQuery enterprise message form contact code</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="[Player special effects] HTML5 MP3 music box playback effects" href="//m.sbmmt.com/xiazai/js/8070">[Player special effects] HTML5 MP3 music box playback effects</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="[Menu navigation] HTML5 cool particle animation navigation menu special effects" href="//m.sbmmt.com/xiazai/js/8069">[Menu navigation] HTML5 cool particle animation navigation menu special effects</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="[form button] jQuery visual form drag and drop editing code" href="//m.sbmmt.com/xiazai/js/8068">[form button] jQuery visual form drag and drop editing code</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="[Player special effects] VUE.JS imitation Kugou music player code" href="//m.sbmmt.com/xiazai/js/8067">[Player special effects] VUE.JS imitation Kugou music player code</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="[html5 special effects] Classic html5 pushing box game" href="//m.sbmmt.com/xiazai/js/8066">[html5 special effects] Classic html5 pushing box game</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="[Picture special effects] jQuery scrolling to add or reduce image effects" href="//m.sbmmt.com/xiazai/js/8065">[Picture special effects] jQuery scrolling to add or reduce image effects</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="[Photo album effects] CSS3 personal album cover hover zoom effect" href="//m.sbmmt.com/xiazai/js/8064">[Photo album effects] CSS3 personal album cover hover zoom effect</a> </div></li> </ul> <ul class="twof" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8328" title="[Front-end template] Home Decor Cleaning and Repair Service Company Website Template" target="_blank">[Front-end template] Home Decor Cleaning and Repair Service Company Website Template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8327" title="[Front-end template] Fresh color personal resume guide page template" target="_blank">[Front-end template] Fresh color personal resume guide page template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8326" title="[Front-end template] Designer Creative Job Resume Web Template" target="_blank">[Front-end template] Designer Creative Job Resume Web Template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8325" title="[Front-end template] Modern engineering construction company website template" target="_blank">[Front-end template] Modern engineering construction company website template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8324" title="[Front-end template] Responsive HTML5 template for educational service institutions" target="_blank">[Front-end template] Responsive HTML5 template for educational service institutions</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8323" title="[Front-end template] Online e-book store mall website template" target="_blank">[Front-end template] Online e-book store mall website template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8322" title="[Front-end template] IT technology solves Internet company website template" target="_blank">[Front-end template] IT technology solves Internet company website template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8321" title="[Front-end template] Purple style foreign exchange trading service website template" target="_blank">[Front-end template] Purple style foreign exchange trading service website template</a> </div></li> </ul> <ul class="threef" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/sucai/3078" target="_blank" title="[PNG material] Cute summer elements vector material (EPS PNG)">[PNG material] Cute summer elements vector material (EPS PNG)</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/sucai/3077" target="_blank" title="[PNG material] Four red 2023 graduation badges vector material (AI EPS PNG)">[PNG material] Four red 2023 graduation badges vector material (AI EPS PNG)</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/sucai/3076" target="_blank" title="[banner picture] Singing bird and cart filled with flowers design spring banner vector material (AI EPS)">[banner picture] Singing bird and cart filled with flowers design spring banner vector material (AI EPS)</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/sucai/3075" target="_blank" title="[PNG material] Golden graduation cap vector material (EPS PNG)">[PNG material] Golden graduation cap vector material (EPS PNG)</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/sucai/3074" target="_blank" title="[PNG material] Black and white style mountain icon vector material (EPS PNG)">[PNG material] Black and white style mountain icon vector material (EPS PNG)</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/sucai/3073" target="_blank" title="[PNG material] Superhero silhouette vector material (EPS PNG) with different color cloaks and different poses">[PNG material] Superhero silhouette vector material (EPS PNG) with different color cloaks and different poses</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/sucai/3072" target="_blank" title="[banner picture] Flat style Arbor Day banner vector material (AI+EPS)">[banner picture] Flat style Arbor Day banner vector material (AI+EPS)</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/sucai/3071" target="_blank" title="[PNG material] Nine comic-style exploding chat bubbles vector material (EPS+PNG)">[PNG material] Nine comic-style exploding chat bubbles vector material (EPS+PNG)</a> </div></li> </ul> <ul class="fourf" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8328" target="_blank" title="[Front-end template] Home Decor Cleaning and Repair Service Company Website Template">[Front-end template] Home Decor Cleaning and Repair Service Company Website Template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8327" target="_blank" title="[Front-end template] Fresh color personal resume guide page template">[Front-end template] Fresh color personal resume guide page template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8326" target="_blank" title="[Front-end template] Designer Creative Job Resume Web Template">[Front-end template] Designer Creative Job Resume Web Template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8325" target="_blank" title="[Front-end template] Modern engineering construction company website template">[Front-end template] Modern engineering construction company website template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8324" target="_blank" title="[Front-end template] Responsive HTML5 template for educational service institutions">[Front-end template] Responsive HTML5 template for educational service institutions</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8323" target="_blank" title="[Front-end template] Online e-book store mall website template">[Front-end template] Online e-book store mall website template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8322" target="_blank" title="[Front-end template] IT technology solves Internet company website template">[Front-end template] IT technology solves Internet company website template</a> </div></li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="//m.sbmmt.com/xiazai/code/8321" target="_blank" title="[Front-end template] Purple style foreign exchange trading service website template">[Front-end template] Purple style foreign exchange trading service website template</a> </div></li> </ul> </div> </div> </div> </div> <div class="phpFoot"> <div class="phpFootIn"> <div class="phpFootCont"> <div class="phpFootLeft"> <dl> <dt> <a href="//m.sbmmt.com/about/us.html" rel="nofollow" target="_blank" title="About us" class="cBlack">About us</a> <a href="//m.sbmmt.com/about/disclaimer.html" rel="nofollow" target="_blank" title="Disclaimer" class="cBlack">Disclaimer</a> <a href="//m.sbmmt.com/update/article_0_1.html" target="_blank" title="Sitemap" class="cBlack">Sitemap</a> <div class="clear"></div> </dt> <dd class="cont1"> php.cn:Public welfare online PHP training,Help PHP learners grow quickly! </dd> </dl> </div> </div> </div> </div> <input type="hidden" id="verifycode" value="/captcha.html"> <link rel="stylesheet" id="_main-css" href="//m.sbmmt.com/static/css/viewer.min.css?2" type="text/css" media="all"> </body> </html>