> > The certificate code referenced here shows why
So what's the implication here, then?
> This is bad code.
Without justifying further I think we're on equal footing on the snottiness here (:
What's bad? Why not use regex here? It's not like they're using it to parse user-controlled HTML. Simple string transormations like this is a great use-case where the manual character iteration easily becomes inefficient and messy. And you may introduce bugs in the process (unicode length bugs are common).
Do you also avoid grep and sed without the -F flag in shell?
> > The certificate code referenced here shows why
So what's the implication here, then?
> This is bad code.
Without justifying further I think we're on equal footing on the snottiness here (:
What's bad? Why not use regex here? It's not like they're using it to parse user-controlled HTML. Simple string transormations like this is a great use-case where the manual character iteration easily becomes inefficient and messy. And you may introduce bugs in the process (unicode length bugs are common).
Do you also avoid grep and sed without the -F flag in shell?