You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constcorpus=`SW1A2Aa is the residence of the Prime Minister. SW1a 2AB is the residence of her no.2. SW1A 1AA is where the queen lives. They are located in the SW1A outcode`;
it("replaces text and returns matching postcodes",()=>{
149
+
constcorpus=`SW1A2Aa is the residence of the Prime Minister. SW1a 2AB is the residence of her no.2. SW1A 1AA is where the queen lives. They are located in the SW1A outcode`;
` is the residence of the Prime Minister. is the residence of her no.2. is where the queen lives. They are located in the SW1A outcode`
155
+
);
156
+
});
157
+
158
+
it("replaces postcode with custom string",()=>{
159
+
constcorpus=`SW1A2Aa is the residence of the Prime Minister. SW1a 2AB is the residence of her no.2. SW1A 1AA is where the queen lives. They are located in the SW1A outcode`;
160
+
constreplaceWith="POSTCODE";
161
+
const{ match, result }=replace(corpus,replaceWith);
`POSTCODE is the residence of the Prime Minister. POSTCODE is the residence of her no.2. POSTCODE is where the queen lives. They are located in the SW1A outcode`
0 commit comments