Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用正则表达式捕获此文本块:
¡¾Ìá¡¿#/¡¾¹©¡¿/¸÷/¡¡/Òµ/¡¾°l¡¿*/¡¾Æ±¡¿¡£ µç»°13534018113ÕÅÉú ¾´Çë±£Áô•½±ãÁªÏµ</ p>
我使用[^a-zA-Z]+了我希望应该涵盖换行符和空格的内容。不是这种情况。我不知道为什么。有没有被 az 或 AZ 覆盖的特殊字符?
[^a-zA-Z]+
您需要将单行修饰符与您使用的任何语言一起使用。下次加个标签。
这是 PCRE 的工作正则表达式:/[^a-z]+/gis
/[^a-z]+/gis
演示+说明:http ://regex101.com/r/pA4dG2