EXPRESSION | DESCRIPTION |
---|---|
[ABC] | Find one character from the options between the brackets |
[^ABC] | Find one character NOT from the options between the brackets |
[0-9] | Find one character from the range 0 to 9 |
[a-g] | Character between a & g |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"openapi": "3.0.0", | |
"info": { | |
"title": "3D Repo IO", | |
"version": "5.4.2" | |
}, | |
"servers": [ | |
{ | |
"url": "https://www.3drepo.io:443/api/v5" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.myapp; | |
import androidx.appcompat.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.text.Editable; | |
import android.text.TextWatcher; | |
import android.view.View; | |
import android.widget.AdapterView; | |
import android.widget.ArrayAdapter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Admin</title> | |
<link rel="stylesheet" href="/css/admin.css"> | |
</head> | |
<body> | |
<header> | |
<div> |