tangoclinh1995 / thehonorclub-mobileapp

The Honor Club's Mobile App Project for COMP 3111H
2 stars 1 forks source link

Spaces in Standardized Tags #59

Closed svm96 closed 7 years ago

svm96 commented 7 years ago

Hey @tangoclinh1995 , in your tagStandardizedHelper, there's this line: tag = tag.replace(" . ", " ");

So, this reduces two spaces to one (But single spaces will still remain unchanged), is that what you were going for?

[There's no dot in there, I put it there because github kept reducing the two spaces to one]

tangoclinh1995 commented 7 years ago

Yep, this is the purpose of the function. Reduce all sequence of white space which length >= 2 into single space

svm96 commented 7 years ago

Okay cool