返回

regex-删除字符串中的所有标签标记

发布时间:2022-05-21 19:34:56 213

我想删除字符串中的所有标签标签。

这是输入字符串。

<p>

<title>Contact Us</title>

</p>

<table dropzone="copy">

    <tbody>

        <tr>

            <td class="label" style="cursor: default;">Full Name</td>

            <td style=

"cursor: default;">[<label id="{0a4a7240-9606-416a-bf7b-ef11a47cca8e}">First name</label>] [<label id="{94263497-683b-46f9-ba0f-69f4c2736598}">Last name</label>]</td>

        </tr>

        <tr>

            <td class="label" style="cursor: d

efault;">Telephone</td>

            <td style="cursor: default;">[<label id="{ce68e02e-e9fd-40ee-9375-ee1b05972e9b}">Phone</label>]</td>

        </tr>

        <tr>

            <td class="label" style="cursor: default;">Email</td>

  <td style="cursor: default;">[<label id="{411b580e-f7e9-4dd2-a70d-947385360cd0}">Email</label>]</td>

        </tr>

        <tr>

            <td class="label" style="cursor: default;">Message</td>

            <td style="cursor: default;">[

<label id="{13e2ff23-135c-4c6d-beb4-2960a533cb98}">Your Message</label>]</td>

        </tr>

        <tr>

            <td class="label" style="cursor: default;">Company</td>

            <td style="cursor: default;">[<label id="{c3f22c3a-8fc1

-48a4-8d6a-fe346024ca2b}">Company</label>]</td>

        </tr>

    </tbody>

</table>

<p> </p>

<p> </p>

需要删除标签标签,但不应删除字符串中的值

<label id="{0a4a7240-9606-416a-bf7b-ef11a47cca8e}">First name</label>会变成First name

<label id="{ce68e02e-e9fd-40ee-9375-ee1b05972e9b}">Phone</label>会变成Phone

<label id="{411b580e-f7e9-4dd2-a70d-947385360cd0}">Email</label>会变成Email

<label id="{13e2ff23-135c-4c6d-beb4-2960a533cb98}">Your Message</label>会变成Your Message

<label id="{c3f22c3a-8fc1-48a4-8d6a-fe346024ca2b}">Company</label>会变成Company

我尝试了以下正则表达式[Regex]::Match( $text, '(?s)<label(.*)">' ).Groups.Value但它不起作用。

任何建议,将不胜感激

提前致谢

特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(1)
按点赞数排序
用户头像
相关帖子