Previous Topic: CaString & Find(const CaString szString)

Next Topic: bool Add(LPCTSTR szString)


bool Remove(const CaString szString)

Find matching string in list and remove it.

Owning Class

CaStringList

Arguments

const CaString szString - string to remove

Return Value

bool - true if success, false if fails

Notes

Fails if string is not valid or not found in list.

Example

CaStringList d; CaString s(“My String”); CaString& rString = d.Remove(s);

More information: