What does it mean if your C reactive protein Quant is high?

A high level of CRP in the blood is a marker of inflammation. It can be caused by a wide variety of conditions, from infection to cancer. High CRP levels can also indicate that there’s inflammation in the arteries of the heart, which can mean a higher risk of heart attack.

How much CRP level is normal?

CRP is measured in milligrams per liter (mg/L). Results for a standard CRP test are usually given as follows: Normal: Less than 10 mg/L. High: Equal to or greater than 10 mg/L.

What medicines reduce CRP?

Angiotensin receptor blockers (ARBs) (valsartan, irbesartan, olmesartan, telmisartan) markedly reduce serum levels of CRP.

How to split a string using regex.split?

The following example uses the regular expression pattern [a-z]+ to split an input string on any uppercase or lowercase alphabetic character. Because the string begins and ends with matching alphabetic characters, the value of the first and last element of the returned array is String.Empty.

Which is the last element of the regex.split array?

Because the string begins and ends with matching alphabetic characters, the value of the first and last element of the returned array is String.Empty. If capturing parentheses are used in a Regex.Split expression, any captured text is included in the resulting string array.

When to use capturing parentheses in regex.split?

If capturing parentheses are used in a Regex.Split expression, any captured text is included in the resulting string array. For example, if you split the string “plum-pear” on a hyphen placed within capturing parentheses, the returned array includes a string element that contains the hyphen.

Can a regular expression match an empty string?

If the regular expression can match the empty string, Split(String, Int32) will split the string into an array of single-character strings because the empty string delimiter can be found at every location. The following example splits the string “characters” into as many elements as there are in the input string.