NS_CStringSetDataRange 编辑

« XPCOM API Reference

Summary

The NS_CStringSetDataRange function copies data into a section of the string's internal buffer. This is a low-level API.

#include "nsStringAPI.h"

nsresult NS_CStringSetDataRange(
  nsACString& aString,
  PRUint32 aCutStart,
  PRUint32 aCutLength,
  const char* aData,
  PRUint32 aDataLength = PR_UINT32_MAX
);

Parameters

aString
[in] A nsACString instance to modify.
aCutStart
[in] The starting index of the section to replace, measured in storage units.
aCutLength
[in] The length of the section to replace, measured in storage units.
aData
[in] A raw character array to copy into this string.
aDataLength
[in] The length of aData, measured in storage units. If equal to PR_UINT32_MAX, then aData is assumed to be null-terminated. Otherwise, aData need not be null terminated.

Return Values

The NS_CStringSetDataRange function returns NS_OK if successful. Otherwise, it returns an error code.

Example

// Replace all occurances of |matchVal| with |newVal|

void ReplaceSubstring(nsACString& str,
                      const nsACString& matchVal,
                      const nsACString& newVal)
{
  const char* sp, *mp, *np;
  PRUint32 sl, ml, nl;

  sl = NS_CStringGetData(str, &sp);
  ml = NS_CStringGetData(matchVal, &mp);
  nl = NS_CStringGetData(newVal, &np);

  for (const char* iter = sp; iter <= sp + sl - ml; ++iter)
  {
    if (memcmp(iter, mp, ml) == 0)
    {
      PRUint32 offset = iter - sp;

      NS_CStringSetDataRange(str, offset, ml, np, nl);

      sl = NS_CStringGetData(str, &sp);

      iter = sp + offset + nl - 1;
    }
  }
}

History

This function was frozen for Mozilla 1.7. See bug 239123 for details.

See Also

nsACString

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:62 次

字数:2991

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文