CSCIENCE1 Telegram 2983
7. Проверка строки на наличие только цифр
Регулярное выражение: ^\d+$
Объяснение:
^ — начало строки.
\d+ — одна или более цифр.
$ — конец строки.
Пример:
let regex = /^\d+$/;
let str = "12345";
console.log(regex.test(str)); // true


8. Поиск всех URL в тексте
Регулярное выражение: \bhttps?:\/\/\S+\b
Объяснение:
https? — соответствует "http" или "https".
:\/\/ — соответствует "://".
\S+ — соответствует одному или более не пробельным символам (весь URL).
Пример:
let regex = /\bhttps?:\/\/\S+\b/g;
let text = "Посетите сайт https://example.com или http://test.com";
console.log(text.match(regex)); // ["https://example.com", "http://test.com"]



tgoop.com/CScience1/2983
Create:
Last Update:

7. Проверка строки на наличие только цифр
Регулярное выражение: ^\d+$
Объяснение:
^ — начало строки.
\d+ — одна или более цифр.
$ — конец строки.
Пример:

let regex = /^\d+$/;
let str = "12345";
console.log(regex.test(str)); // true


8. Поиск всех URL в тексте
Регулярное выражение: \bhttps?:\/\/\S+\b
Объяснение:
https? — соответствует "http" или "https".
:\/\/ — соответствует "://".
\S+ — соответствует одному или более не пробельным символам (весь URL).
Пример:
let regex = /\bhttps?:\/\/\S+\b/g;
let text = "Посетите сайт https://example.com или http://test.com";
console.log(text.match(regex)); // ["https://example.com", "http://test.com"]

BY Computer Science


Share with your friend now:
tgoop.com/CScience1/2983

View MORE
Open in Telegram


Telegram News

Date: |

In handing down the sentence yesterday, deputy judge Peter Hui Shiu-keung of the district court said that even if Ng did not post the messages, he cannot shirk responsibility as the owner and administrator of such a big group for allowing these messages that incite illegal behaviors to exist. End-to-end encryption is an important feature in messaging, as it's the first step in protecting users from surveillance. To delete a channel with over 1,000 subscribers, you need to contact user support Click “Save” ; Add the logo from your device. Adjust the visible area of your image. Congratulations! Now your Telegram channel has a face Click “Save”.!
from us


Telegram Computer Science
FROM American