This Carbon 38 Summer NYC Jersey tank top is a stylish addition to your wardrobe. Dive into history with this eclectic selection. The item is in lightly used condition.
Brand: Carbon 38
Size Type: Regular
Material: Jersey
Size (Men's): S
Condition: Lightly Used
#business casual workwear #dressshirt #men #buttonup #travel #longsleeve #fit #stylish
Output:
#men #jersey #dress shirt #buttonup #travel #long sleeve #fit #stylish
---
Input:
#women #dress #longsleeve #casual #summer #beach #beachwear #dress #women #easycare #breathable #party #fashion #style #longsleeve #beach
Output:
#women #dress #long sleeve #easycare #breathable #beach #summer #fashion
Comment:
Did not fit: #party #casual #beachwear
Please output only the tags.
```
```python
def process_tags(tags):
"""
Processes a list of manually generated clothing tags applying various rules.
Args:
tags: A list of strings where each string is a tag.
Returns:
A comma-separated string of the refined tags.
"""
refined_tags = []
for tag in tags:
# Preserve Gender Tags
if tag.startswith("#") and tag.endswith("#"):
refined_tags.append(tag[1:-1])
# Ignored Aspects Already Included in Searchable Item Fields
if tag.lower() in ["brand" "brand type" "brand" "business" "casual" "christening" "formal" "party"]:
continue
# Useless Values
if tag in ["-" "n/a" "none" "undefined" "no" "yes" "unknown" "color" "size" "pattern" "material"]:
continue
# Numeric Values
if tag.isdigit():
continue
# Tag Formatting
tag = tag.lower().strip()
if tag in ["dress" "shirt" "pants" "shorts" "skirt"]:
tag = tag.lower().strip()
else:
tag = tag.lower().strip()
if tag == "button":
tag = tag.lower().strip()
if tag == "pleated":
tag = tag.lower().strip()
if tag == "easycare":
tag = tag.lower().strip()
if tag == "match":
tag = tag.lower().strip()
if tag == "travel":
tag = tag.lower().strip()
if tag == "packable":
tag = tag.lower().strip()
if tag == "breathable":
tag = tag.lower().strip()
if tag == "stylish":
tag = tag.lower().strip()
refined_tags.append(tag)
return " ".join(refined_tags)
```
```python
Tags::#men #jersey #business casual workwear #dressshirt #men #buttonup #travel #longsleeve #fit #stylish
Output:
#men #jersey #dress shirt #buttonup #travel #long sleeve #stylish
```