 JavaScript 正则表达式迷你书 老姚 - v1.1JavaScript 正则表达式迷你书 老姚 - v1.1 目录 前言 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 版权说明 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1. 第一章 正则表达式字符匹配攻略 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 1.1. 两种模糊匹配 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 1.1.1. 横向模糊匹配 然而关于正则如何匹配字符的学习,大部分人都觉得这块比较杂乱。 毕竟元字符太多了,看起来没有系统性,不好记。本章就解决这个问题。 内容包括: • 两种模糊匹配 • 字符组 • 量词 • 分支结构 • 案例分析 1.1. 两种模糊匹配 如果正则只有精确匹配是没多大意义的,比如 /hello/,也只能匹配字符串中的 "hello" 这个子串。 var regex = /hello/; console.log( regex0 码力 | 89 页 | 3.42 MB | 11 月前3 JavaScript 正则表达式迷你书 老姚 - v1.1JavaScript 正则表达式迷你书 老姚 - v1.1 目录 前言 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 版权说明 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1. 第一章 正则表达式字符匹配攻略 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 1.1. 两种模糊匹配 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 1.1.1. 横向模糊匹配 然而关于正则如何匹配字符的学习,大部分人都觉得这块比较杂乱。 毕竟元字符太多了,看起来没有系统性,不好记。本章就解决这个问题。 内容包括: • 两种模糊匹配 • 字符组 • 量词 • 分支结构 • 案例分析 1.1. 两种模糊匹配 如果正则只有精确匹配是没多大意义的,比如 /hello/,也只能匹配字符串中的 "hello" 这个子串。 var regex = /hello/; console.log( regex0 码力 | 89 页 | 3.42 MB | 11 月前3
 Guzzle PHP 5.3 DocumentationGuzzle Feb 18, 2020 Contents 1 User guide 3 1.1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 Quickstart . . . . . . . . . . . . ($response) { echo 'I completed! ' . $response; }); Contents 1 Guzzle 2 Contents CHAPTER 1 User guide 1.1 Overview 1.1.1 Requirements 1. PHP 5.4.0 2. To use the PHP stream handler, allow_url_fopen must GuzzleHttp\Client; $client = new Client([ 'base_url' => ['https://api.twitter.com/{version}/', ['version' => 'v1.1']], 'defaults' => [ 'headers' => ['Foo' => 'Bar'], 'query' => ['testing' => '123'], 'auth' => ['username'0 码力 | 63 页 | 275.75 KB | 11 月前3 Guzzle PHP 5.3 DocumentationGuzzle Feb 18, 2020 Contents 1 User guide 3 1.1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 Quickstart . . . . . . . . . . . . ($response) { echo 'I completed! ' . $response; }); Contents 1 Guzzle 2 Contents CHAPTER 1 User guide 1.1 Overview 1.1.1 Requirements 1. PHP 5.4.0 2. To use the PHP stream handler, allow_url_fopen must GuzzleHttp\Client; $client = new Client([ 'base_url' => ['https://api.twitter.com/{version}/', ['version' => 'v1.1']], 'defaults' => [ 'headers' => ['Foo' => 'Bar'], 'query' => ['testing' => '123'], 'auth' => ['username'0 码力 | 63 页 | 275.75 KB | 11 月前3
 Guzzle PHP 5.3 Documentation$client = new Client([ 'base_url' => ['https://api.twitter.com/{version}/', ['version' => 'v1.1']], 'defaults' => [ 'headers' => ['Foo' => 'Bar'], 'query' => ['testing' => '123'] to httpbin.org (107.21.213.98) port 80 (#0) > GET /get HTTP/1.1 Host: httpbin.org User-Agent: Guzzle/4.0 curl/7.21.4 PHP/5.5.7 < HTTP/1.1 200 OK < Access-Control-Allow-Origin: * < Content-Type: application/json the body of a request is greater than 1 MB and a request is using HTTP/1.1. Note This option only takes effect when using HTTP/1.1. The HTTP/1.0 and HTTP/2.0 protocols do not support the “Expect: 100-Continue”0 码力 | 72 页 | 312.62 KB | 11 月前3 Guzzle PHP 5.3 Documentation$client = new Client([ 'base_url' => ['https://api.twitter.com/{version}/', ['version' => 'v1.1']], 'defaults' => [ 'headers' => ['Foo' => 'Bar'], 'query' => ['testing' => '123'] to httpbin.org (107.21.213.98) port 80 (#0) > GET /get HTTP/1.1 Host: httpbin.org User-Agent: Guzzle/4.0 curl/7.21.4 PHP/5.5.7 < HTTP/1.1 200 OK < Access-Control-Allow-Origin: * < Content-Type: application/json the body of a request is greater than 1 MB and a request is using HTTP/1.1. Note This option only takes effect when using HTTP/1.1. The HTTP/1.0 and HTTP/2.0 protocols do not support the “Expect: 100-Continue”0 码力 | 72 页 | 312.62 KB | 11 月前3
 Conan 2.10 DocumentationConan Documentation Release 2.10.1 The Conan team Dec 04, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 803 页 | 5.02 MB | 10 月前3 Conan 2.10 DocumentationConan Documentation Release 2.10.1 The Conan team Dec 04, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 803 页 | 5.02 MB | 10 月前3
 Conan 2.9 DocumentationConan Documentation Release 2.9.3 The Conan team Dec 03, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 795 页 | 4.99 MB | 10 月前3 Conan 2.9 DocumentationConan Documentation Release 2.9.3 The Conan team Dec 03, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 795 页 | 4.99 MB | 10 月前3
 Conan 2.7 DocumentationConan Documentation Release 2.7.1 The Conan team Dec 03, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 779 页 | 4.93 MB | 10 月前3 Conan 2.7 DocumentationConan Documentation Release 2.7.1 The Conan team Dec 03, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 779 页 | 4.93 MB | 10 月前3
 Conan 2.8 DocumentationConan Documentation Release 2.8.1 The Conan team Dec 03, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 785 页 | 4.95 MB | 10 月前3 Conan 2.8 DocumentationConan Documentation Release 2.8.1 The Conan team Dec 03, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 785 页 | 4.95 MB | 10 月前3
 Conan 2.6 DocumentationConan Documentation Release 2.6.0 The Conan team Dec 03, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 777 页 | 4.91 MB | 10 月前3 Conan 2.6 DocumentationConan Documentation Release 2.6.0 The Conan team Dec 03, 2024 CONTENTS 1 Introduction 3 1.1 Open Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . source contributors and package creators in ConanCenter to thousands of teams and companies using it. 1.1 Open Source Conan is Free and Open Source, with a permissive MIT license. Check out the source code zip" sha256: "7bc71c682895758a996ccf33b70b91611f51252832b01ef3b4675371510ee466" strip_root: true "1.1": url: ... sha256: ... The recipe doesn’t need to be modified for each version of the code. We can0 码力 | 777 页 | 4.91 MB | 10 月前3
 Guzzle PHP 7.0 DocumentationGuzzle Release July 23, 2020 Contents 1 User Guide 3 1.1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.1.1 Requirements . . . . . $response->getBody(); }); $promise->wait(); Contents 1 Guzzle, Release 2 Contents CHAPTER 1 User Guide 1.1 Overview 1.1.1 Requirements 1. PHP 5.5.0 2. To use the PHP stream handler, allow_url_fopen must Connected to httpbin.org (107.21.213.98) port 80 (#0) > GET /get HTTP/1.1 Host: httpbin.org User-Agent: Guzzle/4.0 curl/7.21.4 PHP/5.5.7 < HTTP/1.1 200 OK < Access-Control-Allow-Origin: * < Content-Type: application/json0 码力 | 50 页 | 235.39 KB | 11 月前3 Guzzle PHP 7.0 DocumentationGuzzle Release July 23, 2020 Contents 1 User Guide 3 1.1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.1.1 Requirements . . . . . $response->getBody(); }); $promise->wait(); Contents 1 Guzzle, Release 2 Contents CHAPTER 1 User Guide 1.1 Overview 1.1.1 Requirements 1. PHP 5.5.0 2. To use the PHP stream handler, allow_url_fopen must Connected to httpbin.org (107.21.213.98) port 80 (#0) > GET /get HTTP/1.1 Host: httpbin.org User-Agent: Guzzle/4.0 curl/7.21.4 PHP/5.5.7 < HTTP/1.1 200 OK < Access-Control-Allow-Origin: * < Content-Type: application/json0 码力 | 50 页 | 235.39 KB | 11 月前3
 Nacos架构&原理
SDK 与 Server 的⼀致性协议 SDK 与 Server ⼀致性协议的核心是通过 MD5 值是否⼀致,如果不⼀致就拉取最新值。 Nacos 1.X Nacos 1.X 采用 Http 1.1 短链接模拟长链接,每 30s 发⼀个心跳跟 Server 对比 SDK 配置 MD 5 值是否跟 Server 保持⼀致,如果⼀致就 hold 住链接,如果有不⼀致配置,就把不⼀致的配置 返回,然后 SolarServiceA1.java A1 3001 1.0 dev SolarServiceA2.java A2 3002 1.1 qa SolarServiceB1.java B1 4001 1.0 qa SolarServiceB2.java B2 4002 1.1 dev SolarZuul.java Zuul 5002 1.0 无  自动化测试入口 结合 Spring Boot solar-service-a[192.168.0.107:3002][V=1.1][R=qa][G=solar-group] -> solar-ser vice-b[192.168.0.107:4002][V=1.1][R=dev][G=solar-group] Result2 : zuul -> solar-service-a[192.168.0.107:3002][V=1.1][R=qa][G=solar-group]0 码力 | 326 页 | 12.83 MB | 9 月前3 Nacos架构&原理
SDK 与 Server 的⼀致性协议 SDK 与 Server ⼀致性协议的核心是通过 MD5 值是否⼀致,如果不⼀致就拉取最新值。 Nacos 1.X Nacos 1.X 采用 Http 1.1 短链接模拟长链接,每 30s 发⼀个心跳跟 Server 对比 SDK 配置 MD 5 值是否跟 Server 保持⼀致,如果⼀致就 hold 住链接,如果有不⼀致配置,就把不⼀致的配置 返回,然后 SolarServiceA1.java A1 3001 1.0 dev SolarServiceA2.java A2 3002 1.1 qa SolarServiceB1.java B1 4001 1.0 qa SolarServiceB2.java B2 4002 1.1 dev SolarZuul.java Zuul 5002 1.0 无  自动化测试入口 结合 Spring Boot solar-service-a[192.168.0.107:3002][V=1.1][R=qa][G=solar-group] -> solar-ser vice-b[192.168.0.107:4002][V=1.1][R=dev][G=solar-group] Result2 : zuul -> solar-service-a[192.168.0.107:3002][V=1.1][R=qa][G=solar-group]0 码力 | 326 页 | 12.83 MB | 9 月前3
共 180 条
- 1
- 2
- 3
- 4
- 5
- 6
- 18














 
 