const arr = []
for(let i = 1; i < 1000; i++) {
arr.push(' '.repeat(i))
}
for(let i = 1; i < 100; i++) {
arr.push('');
arr.push(' text '.repeat(i))
}
const run = (fn) => {
const result = []
for(const val of arr) {
result.push(fn(val));
}
return result
}
run((val) => val.trim().replace(/\s+/g, ' '))
run((val) => {
const trimmed = val.trim();
return trimmed && trimmed.replace(/\s+/g, ' ');
})
run((val) => {
const trimmed = val.trim();
if (trimmed === '') {
return '';
} else {
return trimmed.replace(/\s+/g, ' ');
}
})
run((val) => val.replace(/\s+/g, ' ').trim())
run((val) => {
if(val === '') {
return val;
}
const trimmed = val.trim();
if (trimmed === '') {
return trimmed;
} else {
return trimmed.replace(/\s+/g, ' ');
}
})
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
trim and always replace | |
trim and conditionally replace | |
trim and conditionally replace with if | |
always replace and trim | |
conditionally trim and conditionally replace |
Test name | Executions per second |
---|---|
trim and always replace | 2453.7 Ops/sec |
trim and conditionally replace | 2604.8 Ops/sec |
trim and conditionally replace with if | 2607.7 Ops/sec |
always replace and trim | 2255.7 Ops/sec |
conditionally trim and conditionally replace | 2641.4 Ops/sec |
The benchmark titled "Is it worth checking for empty string before replace with regex?" tests different approaches to handling strings in JavaScript, particularly with respect to trimming whitespace and replacing sequences of whitespace characters with a single space using regular expressions.
Trim and always replace:
run((val) => val.trim().replace(/\s+/g, ' '))
Trim and conditionally replace:
run((val) => {
const trimmed = val.trim();
return trimmed && trimmed.replace(/\s+/g, ' ');
})
Trim and conditionally replace with if:
run((val) => {
const trimmed = val.trim();
if (trimmed === '') {
return '';
} else {
return trimmed.replace(/\s+/g, ' ');
}
})
if
statement.Always replace and trim:
run((val) => val.replace(/\s+/g, ' ').trim())
Conditionally trim and conditionally replace:
run((val) => {
if(val === '') {
return val;
}
const trimmed = val.trim();
if (trimmed === '') {
return trimmed;
} else {
return trimmed.replace(/\s+/g, ' ');
}
})
The regex used in these benchmarks (/\s+/g
) matches one or more whitespace characters globally. The purpose is to normalize any sequences of whitespace (spaces, tabs, line breaks) to a single space. This can help maintain clean formatting when dealing with user input or data processing.
Using Libraries:
_.trim
, _.replace
) which can be used for such operations, providing additional robustness.Native String Methods:
String.prototype.split
to achieve similar results without regex, though this might not be as concise or efficient.Using Functional Programming Concepts:
map
can also be leveraged alongside the mentioned methods for batch processing lists of strings if applicable.In summary, the benchmark primarily illustrates different methods of handling whitespace in strings, with a focus on efficiency and edge case handling, while also providing insights into performance considerations in JavaScript string manipulation.