本文整理汇总了C++中nsAString::Find方法的典型用法代码示例。如果您正苦于以下问题:C++ nsAString::Find方法的具体用法?C++ nsAString::Find怎么用?C++ nsAString::Find使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nsAString
的用法示例。
在下文中一共展示了nsAString::Find方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: while
static void
__ReplaceSubstring (nsAString &string, nsAString &replace, nsAString &with)
{
PRInt32 i = string.Find (replace);
while (i >= 0) {
string.Replace (i, replace.Length(), with);
i = string.Find (replace);
}
}
示例2: sbWinGetVolumeGUIDPath
nsresult
sbWinGetVolumeGUID(DEVINST aDevInst,
nsAString& aVolumeGUID)
{
nsresult rv;
// Start with the volume GUID path.
rv = sbWinGetVolumeGUIDPath(aDevInst, aVolumeGUID);
NS_ENSURE_SUCCESS(rv, rv);
// Strip everything but the volume GUID. Transform
// "\\?\Volume{26a21bda-a627-11d7-9931-806e6f6e6963}\" to
// "{26a21bda-a627-11d7-9931-806e6f6e6963}".
PRInt32 index;
index = aVolumeGUID.Find("{");
NS_ENSURE_TRUE(index >= 0, NS_ERROR_UNEXPECTED);
aVolumeGUID.Cut(0, index);
index = aVolumeGUID.Find("}");
NS_ENSURE_TRUE(index >= 0, NS_ERROR_UNEXPECTED);
aVolumeGUID.SetLength(index + 1);
return NS_OK;
}