本文主要参考编程教室http://crossincode.com/school/lesson/33/ 1. 我们已经了解了正则表达式中的一些特殊符号,如\b、\d、.、\S等等。这些具有特殊意义的专用字符被称作“元字符”。常用的元字符还有: \w - 匹配字母或数字或下划线或汉字(我试验下了,发现3 ...
分类:
其他好文 时间:
2017-04-22 17:36:04
阅读次数:
126
什么是 AJAX ? AJAX = 异步 JavaScript 和 XML。 AJAX 是一种用于创建快速动态网页的技术。 通过在后台与服务器进行少量数据交换,AJAX 可以使网页实现异步更新。这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新。 传统的网页(不使用 AJAX)如果需要 ...
分类:
Web程序 时间:
2017-04-20 22:36:54
阅读次数:
244
Problem Description As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by train(beca ...
分类:
其他好文 时间:
2017-04-20 10:51:26
阅读次数:
186
Description 0 s, 1 s and ? Marks Given a string consisting of 0, 1 and ? only, change all the ? to 0/1, so that the size of the largest group is minim ...
分类:
其他好文 时间:
2017-04-18 15:11:45
阅读次数:
131
新概念英语(1-57)An unusually day What is Mr. Sawyer doing tonight? It is eight o'clock. The children go to school by car every day, but today they are goin ...
分类:
其他好文 时间:
2017-04-17 16:05:45
阅读次数:
222
package org.OverWrite;class Person{ private String name; private int age; public void setName(String name){ this.name=name; } public void setAge(int a ...
分类:
其他好文 时间:
2017-04-13 18:10:15
阅读次数:
183
JSON是JavaScript Object Notation的缩写,它是一种数据交换格式。 在JSON出现之前,大家一直用XML来传递数据。因为XML是一种纯文本格式,所以它适合在网络上交换数据。XML本身不算复杂,但是,加上DTD、XSD、XPath、XSLT等一大堆复杂的规范以后,任何正常的软 ...
分类:
Web程序 时间:
2017-04-13 16:43:17
阅读次数:
214
D - Train Problem I(栈的应用) As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by trai ...
分类:
其他好文 时间:
2017-04-11 14:51:38
阅读次数:
261
初识HTML-页面的结构 ——岳小弟 网上冲浪曾是一度让年轻人觉得很时尚的事情,身为21世纪的青年。如果不懂什么是网上冲浪,什么是网上购物那基本和身边的朋友同事之间丢失了很好的沟通方式。而这一切的基础都源自于前端技术的高速发展,从刚开始单调基础的网页到现在酷炫华丽的页面效果。Html这个基础之中的基 ...
分类:
Web程序 时间:
2017-04-09 18:12:55
阅读次数:
210