On xiaomi hyperos there's also an option to disable google assistant. I've got everything disabled. Only thing I do have installed is a web wrapped for duck.ai which claims to let you use various AIs anonymously
I need to understand the rationale of not shipping all of these K2 improvements in a single update/release. It's giving "we will fix Windows 11 but no commitments". It seems to me that they just announce these improvements just to appease the community.
The term "RTM" is long gone starting with Windows 10. Every current release is a GA build. This is the result of MS making Windows as a Service (WaaS).
Question
Seabizkit
Hi all
I am trying to write some regex to remove all white space from html.
but the regex i am currently using doesn't factor in that in the pre tags there maybe opening "<" and closing ">" tags
This matches everything inside the pre tags
(<)\s*?(pre\b[^>]*?)(>)([\s\S]*?)(<)\s*(/\s*?pre\s*?)(>)
e.g.
(009)156 (010) (0)<pre> <test> edehofo<w<dieoj > ></pre> yuui u ji
will match
<pre> <test> edehofo<w<dieoj > ></pre>
and
(?<=\s)\s+(?![^<>]*</pre>)
eg will almost work but does not work if there is an "<" or ">" in the mark up.
space[ ]spaces <pre>[ ]spaces</pre>space[ ]spaces
will result in
space[ ]spaces <pre>[ ]spaces</pre>space[ ]spaces
but if there is a "<" or ">" in the pre tags then it will not work.
Could anyone help me
Link to comment
https://www.neowin.net/forum/topic/1252664-regex-c-remove-white-space-but-not-inside-pre-and-pre/Share on other sites
10 answers to this question
Recommended Posts