Forum Discussion
MathijsSerlie
Aug 07, 2025Copper Contributor
Help Needed: Trouble Filtering and Re-Entering Data
Hi everyone, I'm looking for some help. I've started working on something quite simple, but I can't get it to function correctly. Yep, total noob moment. The concept is straightforward, and I've at...
peiyezhu
Aug 09, 2025Bronze Contributor
Re:
- The UUID (last line) must be unique—no duplicate entries allowed.
$query = "
CREATE TABLE IF NOT EXISTS myList (
id INTEGER PRIMARY KEY AUTOINCREMENT,
Name TEXT NOT NULL,
UUID TEXT NOT NULL UNIQUE
);
";
DDL key words unique.
Re:
The idea is to paste multi-line text into a text field.
regular expression.
var text = document.getElementById('inputText').value;
var nameRegex = /(\d+g Name Bundle sib \d+ \d+[A-Z]*)/;
var uuidRegex = /([a-f0-9-]{36})/;
var nameMatch = text.match(nameRegex);
var uuidMatch = text.match(uuidRegex);