String Manipulation Flashcards

1
Q

Concat “foo” and “bar” (all methods)

A

"foo" + "bar"
"foo".concat("bar")
'${"foo"}${"bar"}'

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Check if c in string cudacadca. Find position of c (first and last)

A

"cudacadca".includes("c")
"cudacadca".indexOf("c")
"cudacadca".lastIndexOf("c")

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Check if str starts or ends with foo

A

str.startsWith("foo")
str.endsWith("foo")

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Convert str to upper or lower case.

A

str.toUpperCase()
str.toLowerCase()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Remove spaces from beginning, end of a str (or both)

A

str.trimStart()
str.trimEnd()
str.trim()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Pad a string with 0 until it’s 10 chars wide (from left and right)

A

str.padStart(10, "0")
str.padEnd(10, "0")

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Extract substring"bar" from "foo bar baz" (using indexes)

A

"foo bar baz".slice(4, 7)
"foo bar baz".substring(4, 7)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Extract last 3 chars from str

A

str.slice(-3)
str.slice(-3, str.length)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Repalce all f with x in a str. Replace only first one.

A

str.replaceAll("f", "x")
str.replace("f", "x")

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Convert str into array of chars. "abc" => [ 'a', 'b', 'c' ]

A

str.split("")

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Join [ 'a', 'b', 'c' ] with -

A

[ 'a', 'b', 'c' ].join("-")

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Exercise
Hide all but last 4 chars of a string.

2034399002125581 => ************5581

A
const fullNumber = '2034399002125581';
const last4Digits = fullNumber.slice(-4);
const maskedNumber = last4Digits.padStart(fullNumber.length, '*');
input.slice(-4).padStart(input.length, "*")
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Check if second char of str is f (two ways).

What will happen if string length is 1 (there’s no second char).

A

str[1] == "f" // undefined if not found
str.charAt(1) // “” if not found

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Create string that is N times “X”

A

"X".repeat(n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How to safely compare unicode strings and why.

A

str.normalize() === str2.normalize()

  • Certain characters can be represented in multiple ways in Unicode. For example:
  • The letter “é” can be stored as:
    • Precomposed Form → “é” (U+00E9)
    • Decomposed Form → “e” + “́” (U+0065 U+0301)
  • Without normalization, these two representations look the same but are actually different strings at the binary level.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Construct string with new, print it’s value.

A
const foo = new String("foo");
console.log(foo.valueOf());
console.log(foo.toString()); // alternative

console.log(foo); // Displays: [String: 'foo'] !!!
17
Q

Create a string without parsing it’s escape characters (like \n, \ etc…)

A
String.raw`C:\Development\profile\aboutme.html`;