نتایج جستجو برای: symptomatic prostatic enlargement

تعداد نتایج: 111894  

2012
Nianzeng Xing Yinglu Guo Feiya Yang Long Tian Junhui Zhang Yong Yan Ning Kang Zhongcheng Xin Yinong Niu

OBJECTIVE Laparoscopic simple prostatectomy for large volume benign prostatic hyperplasia (BPH) has been reported in the literature and may be a viable alternative to open surgery for large prostate glands. While previous publications have shown comparable outcomes between laparoscopic and open simple prostatectomy, there have been few publications describing improved laparoscopic operative tec...

Journal: :Neurourology and urodynamics 2009
Nouval Shahab Narihito Seki Ryosuke Takahashi Shunichi Kajioka Mineo Takei Akito Yamaguchi Seiji Naito

AIMS To investigate the association of both the urodynamic profiles and patterns of detrusor overactivity (DO) with the severity of the symptoms related to overactive bladder (OAB) in men with benign prostatic enlargement (BPE) associated with DO. METHODS A total of 777 men with symptomatic BPE who had undergone transurethral resection of the prostate (TURP) were retrospectively analyzed. All...

Journal: :Urologia internationalis 2014
Hoon Choi Jae Heon Kim Ji Sung Shim Jae Young Park Seok Ho Kang Du Geon Moon Jun Cheon Jeong Gu Lee Je Jong Kim Jae-Hyun Bae

OBJECTIVE To identify the prognostic factors causing persistent storage symptoms following transurethral resection of the prostate in patients with benign prostatic enlargement (BPE). METHODS A total of 116 men with symptomatic BPE requiring surgery were enrolled in the study between January 2011 and December 2012. The patients underwent basic clinical evaluations including transrectal ultras...

2017
Kazutoshi Fujita J. Kellogg Parsons Charles M. Ewing George J Netto William B. Isaacs Christian P. Pavlovich

Monocyte chemotactic protein-1 (MCP-1) is differentially expressed in benign prostatic hyperplasia (BPH) and is a potential clinical biomarker for BPH. We collected urine post-digital rectal examination (DRE) from 48 men who did not have a diagnosis of prostate cancer. We measured MCP-1 levels by enzyme-linked immunosorbent assay (ELISA) and compared them with prostate weight and lower urinary ...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 2015
Joo Young Cha Jungwon Wee Jooyoung Jung Yongwoo Jang Byeongjun Lee Gyu-Sang Hong Beom Chul Chang Yoon-La Choi Young Kee Shin Hye-Young Min Ho-Young Lee Tae-Young Na Mi-Ock Lee Uhtaek Oh

Benign prostatic hyperplasia (BPH) is characterized by an enlargement of the prostate, causing lower urinary tract symptoms in elderly men worldwide. However, the molecular mechanism underlying the pathogenesis of BPH is unclear. Anoctamin1 (ANO1) encodes a Ca(2+)-activated chloride channel (CaCC) that mediates various physiological functions. Here, we demonstrate that it is essential for testo...

2016
Keong Tatt Foo

Clinical BPH as a disease has been defined as benign prostatic enlargement (BPE) [1,2]; however in clinical practice we still see many patients with no enlargement, with prostate volume less than 20 g still causing symptoms and obstruction [3]. How can this be explained? To solve the puzzle, we first need to redefine clinical BPH. We need to go back to the basic fundamental pathology of BPH, wh...

2016
Reginald Harrison

Several valuable papers by the author have appeared cn the subject of urinary disorders since the last edition (1893) of his Work on the Surgical Disorders of the Urina/y Organs, and the present book is composed of these articles which have been bought up to date. The chapters are full of important suggestions, bearing the weight and authority of one so well known this branch of surgery. The au...

S MAFTOUN, S TORABI-NEZHAD ,

Prostatic intra-epithelial neoplasia (PIN) is considered a precursor of invasive carcinoma, characterized by proliferation and anaplasia of cells lining prostatic ducts and acini. In this study, we applied the PIN grading system on one-hundred cases of prostatic carcinoma and one-hundred cases of benign prostatic hyperplasia, then compared the results. 74% of prostatic carcinoma and 51 % of...

Journal: :THE JOURNAL OF JAPAN SOCIETY FOR LASER SURGERY AND MEDICINE 1998

Journal: :Proceedings 2017
Preston A Milburn Christian T Cable Sean Trevathan Marawan M El Tayeb

Mantle cell lymphoma of the prostate is rare and is seldom encountered in general urologic practice. It either arises primarily from the prostate or is a result of metastatic spread from another site. This specific type of lymphoma has an aggressive course and may respond poorly to traditional chemotherapy with frequent relapses. Mantle cell lymphoma occurs in middle age or older, which is also...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->