mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-21 03:44:21 +00:00
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
// String containing code snippets
|
|
let str = "let x = 10; console.log(x);"
|
|
|
|
// Create regex pattern
|
|
let regexp = /^(?:\s{4}|\t).+/gm
|
|
|
|
// Test if any code snippets were detected
|
|
if (str.match(regexp)) {
|
|
// Code snippet was detected, do something with it
|
|
console.log(str)
|
|
}
|